Ik heb de broncode van DownloadHelper doorzocht. In de module download-manager.jsm staat de onderstaande code:
DLMgr.prototype.incrementDownloadCount = function() {
var dwcount=0;
try {
dwcount=this.pref.getIntPref("download-count");
} catch(e) {
}
dwcount++;
this.pref.setIntPref("download-count",dwcount);
if(dwcount%100==0) {
this.donate(dwcount);
}
if(this.pref.getBoolPref("disable-dwcount-cookie")==false) {
try {
var cMgr = Components.classes["@mozilla.org/cookiemanager;1"].
getService(Components.interfaces.nsICookieManager2);
try {
cMgr.add(".downloadhelper.net","/","dwcount",""+dwcount,false,true,new Date().getTime()/1000+10000000);
cMgr.add(".vidohe.com","/","dwcount",""+dwcount,false,true,new Date().getTime()/1000+10000000);
} catch(e) {
cMgr.add(".downloadhelper.net","/","dwcount",""+dwcount,false,true,false,new Date().getTime()/1000+10000000);
cMgr.add(".vidohe.com","/","dwcount",""+dwcount,false,true,false,new Date().getTime()/1000+10000000);
}
} catch(e) {
dump("!!! [DhDownloadMgr] incrementDownloadCount() "+e+"\n");
}
}
}
Deze plaatst automatisch een cookie met een telling van het aantal downloads voor deze domeinen.
Als je in about:config de instelling
dwhelper.disable-dwcount-cookie op
true zet zou de add-on geen cookies meer moeten aanmaken.