Counter fix
This commit is contained in:
parent
b07cd8c62c
commit
36d5cdd016
75
clearurls.js
75
clearurls.js
|
@ -204,13 +204,21 @@ function removeFieldsFormURL(provider, request)
|
||||||
badges[tabid] = 0;
|
badges[tabid] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
browser.browserAction.setBadgeText({text: (++badges[tabid]).toString(), tabId: tabid});
|
|
||||||
browser.storage.local.set({"globalCounter": ++globalCounter});
|
browser.storage.local.set({"globalCounter": ++globalCounter});
|
||||||
|
browser.browserAction.setBadgeText({text: (++badges[tabid]).toString(), tabId: tabid});
|
||||||
changes = true;
|
changes = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(provider.isCaneling()){
|
if(provider.isCaneling()){
|
||||||
|
if(badges[tabid] == null)
|
||||||
|
{
|
||||||
|
badges[tabid] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
browser.storage.local.set({"globalCounter": ++globalCounter});
|
||||||
|
browser.browserAction.setBadgeText({text: (++badges[tabid]).toString(), tabId: tabid});
|
||||||
|
|
||||||
cancel = true;
|
cancel = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -222,6 +230,19 @@ function removeFieldsFormURL(provider, request)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return the number of parameters query strings.
|
||||||
|
* @param {String} url URL as String
|
||||||
|
* @return {int} Number of Parameters
|
||||||
|
*/
|
||||||
|
function countFields(url)
|
||||||
|
{
|
||||||
|
var matches = url.match(/[a-z\d]+=[a-z\d]+/gi);
|
||||||
|
var count = matches? matches.length : 0;
|
||||||
|
|
||||||
|
return count;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function which called from the webRequest to
|
* Function which called from the webRequest to
|
||||||
* remove the tracking fields from the url.
|
* remove the tracking fields from the url.
|
||||||
|
@ -231,7 +252,11 @@ function removeFieldsFormURL(provider, request)
|
||||||
*/
|
*/
|
||||||
function clearUrl(request)
|
function clearUrl(request)
|
||||||
{
|
{
|
||||||
browser.storage.local.set({"globalURLCounter": ++globalURLCounter});
|
var URLbeforeReplaceCount = countFields(request.url);
|
||||||
|
//Add Fields form Request to global url counter
|
||||||
|
globalURLCounter += URLbeforeReplaceCount;
|
||||||
|
browser.storage.local.set({"globalURLCounter": globalURLCounter});
|
||||||
|
|
||||||
browser.storage.local.get('globalStatus', clear);
|
browser.storage.local.get('globalStatus', clear);
|
||||||
|
|
||||||
function clear(data){
|
function clear(data){
|
||||||
|
@ -244,37 +269,37 @@ function clearUrl(request)
|
||||||
|
|
||||||
if(globalStatus){
|
if(globalStatus){
|
||||||
|
|
||||||
var result = {
|
var result = {
|
||||||
"changes": false,
|
"changes": false,
|
||||||
"url": ""
|
"url": ""
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Call for every provider the removeFieldsFormURL method.
|
||||||
|
*/
|
||||||
|
for (var i = 0; i < providers.length; i++) {
|
||||||
|
result = removeFieldsFormURL(providers[i], request);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Call for every provider the removeFieldsFormURL method.
|
* Cancel the Request
|
||||||
*/
|
*/
|
||||||
for (var i = 0; i < providers.length; i++) {
|
if(result["cancel"]){
|
||||||
result = removeFieldsFormURL(providers[i], request);
|
return {
|
||||||
|
cancel: true
|
||||||
/*
|
|
||||||
* Cancel the Request
|
|
||||||
*/
|
|
||||||
if(result["cancel"]){
|
|
||||||
return {
|
|
||||||
cancel: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Ensure that the function go not into
|
|
||||||
* an loop.
|
|
||||||
*/
|
|
||||||
if(result["changes"]){
|
|
||||||
return {
|
|
||||||
redirectUrl: result["url"]
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Ensure that the function go not into
|
||||||
|
* an loop.
|
||||||
|
*/
|
||||||
|
if(result["changes"]){
|
||||||
|
return {
|
||||||
|
redirectUrl: result["url"]
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue
Block a user