91d46a7b70
- Added listener to the browser history to prevent tracking with the [history.pushState method](https://developer.mozilla.org/en-US/docs/Web/API/History_API) - Added webNavigation and tabs permissions, for the new feature - Added switches in settings to enable and disable the context menu entry and the history listener - Added tool to clean URLs, that was pasted into a textbox - Added icon for new tool to clean URLs - Fixed [#40](https://gitlab.com/KevinRoebert/ClearUrls/issues/40), see also https://curl.kevinroebert.de - Fixed [#103](https://gitlab.com/KevinRoebert/ClearUrls/issues/103), see also https://curl.kevinroebert.de - Changed clipboard-helper.js path to be absolute to prevent problems - Changed rewrite of old GitHub links to the new data.min.json and rules.min.hash - Config icon is now bigger and above the config label - Update Traditional Chinese Translation by [@yipinghuang](https://gitlab.com/yipinghuang) #161 #162 #157 #40 #103 #158
316 lines
8.2 KiB
JavaScript
316 lines
8.2 KiB
JavaScript
/*
|
|
* ClearURLs
|
|
* Copyright (c) 2017-2019 Kevin Röbert
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/*jshint esversion: 6 */
|
|
var element = $("#statistics_value");
|
|
var elGlobalPercentage = $("#statistics_value_global_percentage");
|
|
var elProgressbar_blocked = $('#progress_blocked');
|
|
var elProgressbar_non_blocked = $('#progress_non_blocked');
|
|
var elTotal = $('#statistics_total_elements');
|
|
var globalPercentage = 0;
|
|
var globalCounter;
|
|
var globalurlcounter;
|
|
var globalStatus;
|
|
var badgedStatus;
|
|
var hashStatus;
|
|
var loggingStatus;
|
|
var statisticsStatus;
|
|
var currentURL;
|
|
|
|
async function getData()
|
|
{
|
|
await browser.runtime.sendMessage({
|
|
function: "getData",
|
|
params: ["globalCounter"]
|
|
}).then((data) => {
|
|
globalCounter = data.response;
|
|
});
|
|
|
|
await browser.runtime.sendMessage({
|
|
function: "getData",
|
|
params: ["globalurlcounter"]
|
|
}).then((data) => {
|
|
globalurlcounter = data.response;
|
|
});
|
|
|
|
await browser.runtime.sendMessage({
|
|
function: "getData",
|
|
params: ["globalStatus"]
|
|
}).then((data) => {
|
|
globalStatus = data.response;
|
|
});
|
|
|
|
await browser.runtime.sendMessage({
|
|
function: "getData",
|
|
params: ["badgedStatus"]
|
|
}).then((data) => {
|
|
badgedStatus = data.response;
|
|
});
|
|
|
|
await browser.runtime.sendMessage({
|
|
function: "getData",
|
|
params: ["hashStatus"]
|
|
}).then((data) => {
|
|
hashStatus = data.response;
|
|
});
|
|
|
|
await browser.runtime.sendMessage({
|
|
function: "getData",
|
|
params: ["loggingStatus"]
|
|
}).then((data) => {
|
|
loggingStatus = data.response;
|
|
});
|
|
|
|
await browser.runtime.sendMessage({
|
|
function: "getData",
|
|
params: ["statisticsStatus"]
|
|
}).then((data) => {
|
|
statisticsStatus = data.response;
|
|
});
|
|
|
|
await browser.runtime.sendMessage({
|
|
function: "getCurrentURL",
|
|
params: []
|
|
}).then((data) => {
|
|
currentURL = data.response;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Initialize the UI.
|
|
*
|
|
*/
|
|
function init()
|
|
{
|
|
setSwitchButton("globalStatus", "globalStatus");
|
|
setSwitchButton("tabcounter", "badgedStatus");
|
|
setSwitchButton("logging", "loggingStatus");
|
|
setSwitchButton("statistics", "statisticsStatus");
|
|
setHashStatus();
|
|
changeStatistics();
|
|
}
|
|
|
|
/**
|
|
* Get the globalCounter and globalurlcounter value from the storage
|
|
* @param {(data){} Return value form storage
|
|
*/
|
|
function changeStatistics()
|
|
{
|
|
globalPercentage = ((globalCounter/globalurlcounter)*100).toFixed(3);
|
|
|
|
if(isNaN(Number(globalPercentage))) globalPercentage = 0;
|
|
|
|
element.text(globalCounter.toLocaleString());
|
|
elGlobalPercentage.text(globalPercentage+"%");
|
|
elProgressbar_blocked.css('width', globalPercentage+'%');
|
|
elProgressbar_non_blocked.css('width', (100-globalPercentage)+'%');
|
|
elTotal.text(globalurlcounter.toLocaleString());
|
|
}
|
|
|
|
/**
|
|
* Set the value for the hashStatus on startUp.
|
|
*/
|
|
function setHashStatus()
|
|
{
|
|
var element = $('#hashStatus');
|
|
|
|
if(hashStatus)
|
|
{
|
|
element.text(translate(hashStatus));
|
|
}
|
|
else {
|
|
element.text(translate('hash_status_code_5'));
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* Change the value of a switch button.
|
|
* @param {string} id HTML id
|
|
* @param {string} storageID storage internal id
|
|
*/
|
|
function changeSwitchButton(id, storageID)
|
|
{
|
|
var element = $('#'+id);
|
|
|
|
changeVisibility(id, storageID);
|
|
|
|
element.on('change', function(){
|
|
browser.runtime.sendMessage({
|
|
function: "setData",
|
|
params: [storageID, element.is(':checked')]
|
|
}).then((data) => {
|
|
if(storageID == "globalStatus"){
|
|
browser.runtime.sendMessage({
|
|
function: "changeIcon",
|
|
params: []
|
|
});
|
|
}
|
|
changeVisibility(id, storageID);
|
|
|
|
browser.runtime.sendMessage({
|
|
function: "saveOnExit",
|
|
params: []
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Change the visibility of sections.
|
|
*/
|
|
function changeVisibility(id, storageID)
|
|
{
|
|
var element;
|
|
|
|
switch(storageID)
|
|
{
|
|
case "loggingStatus":
|
|
element = $('#log_section');
|
|
break;
|
|
case "statisticsStatus":
|
|
element = $('#statistic_section');
|
|
break;
|
|
default:
|
|
element = "undefine";
|
|
}
|
|
|
|
if(element != "undefine")
|
|
{
|
|
if($('#'+id).is(':checked'))
|
|
{
|
|
element.css('display', '');
|
|
element.css('display', '');
|
|
}
|
|
else {
|
|
element.css('display', 'none');
|
|
element.css('display', 'none');
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Set the value of a switch button.
|
|
* @param {string} id HTML id
|
|
* @param {string} varname js internal variable name
|
|
*/
|
|
function setSwitchButton(id, varname)
|
|
{
|
|
var element = $('#'+id);
|
|
element.prop('checked', this[varname]);
|
|
}
|
|
|
|
/**
|
|
* Reset the global statistic
|
|
*/
|
|
function resetGlobalCounter(){
|
|
browser.runtime.sendMessage({
|
|
function: "setData",
|
|
params: ['globalCounter', 0]
|
|
});
|
|
|
|
browser.runtime.sendMessage({
|
|
function: "setData",
|
|
params: ['globalurlcounter', 0]
|
|
});
|
|
|
|
browser.runtime.sendMessage({
|
|
function: "saveOnExit",
|
|
params: []
|
|
});
|
|
|
|
globalCounter = 0;
|
|
globalurlcounter = 0;
|
|
|
|
changeStatistics();
|
|
}
|
|
|
|
$(document).ready(function(){
|
|
getData().then(() => {
|
|
init();
|
|
$('#reset_counter_btn').on("click", resetGlobalCounter);
|
|
changeSwitchButton("globalStatus", "globalStatus");
|
|
changeSwitchButton("tabcounter", "badgedStatus");
|
|
changeSwitchButton("logging", "loggingStatus");
|
|
changeSwitchButton("statistics", "statisticsStatus");
|
|
$('#loggingPage').attr('href', browser.extension.getURL('./html/log.html'));
|
|
$('#settings').attr('href', browser.extension.getURL('./html/settings.html'));
|
|
$('#cleaning_tools').attr('href', browser.extension.getURL('./html/cleaningTool.html'));
|
|
setText();
|
|
});
|
|
|
|
});
|
|
|
|
/**
|
|
* Set the text for the UI.
|
|
*/
|
|
function setText()
|
|
{
|
|
injectText('loggingPage','popup_html_log_head');
|
|
injectText('reset_counter_btn','popup_html_statistics_reset_button');
|
|
injectText('rules_status_head','popup_html_rules_status_head');
|
|
injectText('statistics_percentage','popup_html_statistics_percentage');
|
|
injectText('statistics_blocked','popup_html_statistics_blocked');
|
|
injectText('statistics_elements','popup_html_statistics_elements');
|
|
injectText('statistics_head','popup_html_statistics_head');
|
|
injectText('configs_switch_badges','popup_html_configs_switch_badges');
|
|
injectText('configs_switch_log','popup_html_configs_switch_log');
|
|
injectText('configs_switch_filter','popup_html_configs_switch_filter');
|
|
injectText('configs_head','popup_html_configs_head');
|
|
injectText('configs_switch_statistics','configs_switch_statistics');
|
|
$('#donate').prop('title', translate('donate_button'));
|
|
}
|
|
|
|
/**
|
|
* Helper function to inject the translated text and tooltip.
|
|
*
|
|
* @param {string} id ID of the HTML element
|
|
* @param {string} attribute Name of the attribute used for localization
|
|
* @param {boolean} tooltip
|
|
*/
|
|
function injectText(id, attribute, tooltip)
|
|
{
|
|
object = $('#'+id);
|
|
object.text(translate(attribute));
|
|
|
|
/*
|
|
This function will throw an error if no translation
|
|
is found for the tooltip. This is a planned error.
|
|
*/
|
|
tooltip = translate(attribute+"_title");
|
|
|
|
if(tooltip != "")
|
|
{
|
|
object.prop('title', tooltip);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Translate a string with the i18n API.
|
|
*
|
|
* @param {string} string Name of the attribute used for localization
|
|
*/
|
|
function translate(string)
|
|
{
|
|
return browser.i18n.getMessage(string);
|
|
}
|
|
|
|
function handleError(error) {
|
|
console.log(`Error: ${error}`);
|
|
}
|