SeaMonkey დამატებები

მოგესალმებით, SeaMonkey დამატებების გვერდზე.

დაამატეთ ახალი შესაძლებლობები და გაფორმებები, რომ გახადოთ SeaMonkey მეტად თქვენებური.

დახურვა

სახლიდან გასვლისას?

გაეცანით მობილურის დამატებების გვერდს.

დახურვა

char101

მონაცემები

შემმუშავებლის მონაცემები
სახელი char101
რეგისტრაციის თარიღი თებ. 12, 2008
შემუშავებული დამატებების რაოდენობა 0 დამატება
დამატებების საშუალო შეფასება 4 შეფასება 5 ვარსკვლავიდან

ჩემი მიმოხილვები

FiltaQuilla

5 შეფასება 5 ვარსკვლავიდან

To make this addon work with thunderbird 60:
1) quit thunderbird
2) go to your profile folder, go to extensions, find filtaquilla@mesquilla.com.xpi, unzip it
3) open "content/filtaquilla.js" and replace (a) in line 1180 "for each (var tagInfo in tagArray)" into "for (var tagInfo of tagArray)" (b) in line 1542 "for each (let tagInfo in tagArray)" into "for (let tagInfo of tagArray)"
4) zip it again, rename into filtaquilla@mesquilla.com.xpi and replace the old filtaquilla@mesquilla.com.xpi

ეს მიმოხილვა გაკეთებულია დამატების წინა ვერსიის შესახებ (1.3.2). 

View Dependencies

5 შეფასება 5 ვარსკვლავიდან

Extract the xpi, find pageInfoOverlay.js, then replace function GetCache with below code. This works with static files, but the html size still being shown as unknown.

// At the top of the file
var gCacheService = Components.classes["@mozilla.org/network/cache-service;1"].getService(Components.interfaces.nsICacheService);

// Replace function GetCache
function GetCache(url, callback)
{
const ACCESS_READ = Components.interfaces.nsICache.ACCESS_READ;
try {
var httpCacheSession = gCacheService.createSession("HTTP", Components.interfaces.nsICache.STORE_ANYWHERE, true);
httpCacheSession.asyncOpenCacheEntry(url, ACCESS_READ,
{onCacheEntryAvailable: function(entry, access, status) {
if (entry)
callback(entry);
else {
var ftpCacheSession = gCacheService.createSession("FTP", Components.interfaces.nsICache.STORE_ANYWHERE, true);
ftpCacheSession.asyncOpenCacheEntry(url, ACCESS_READ,
{onCacheEntryAvailable: function(entry, access, status) {
callback(entry);
}}, true);
}
}}, true);
} catch(ex) {
console.log(ex);
callback(null);
}
}