77 lines
2.0 KiB
JavaScript
77 lines
2.0 KiB
JavaScript
/*
|
|
* ClearURLs
|
|
* Copyright (c) 2017-2020 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 */
|
|
/*
|
|
* This script is responsible for setting the badged.
|
|
*/
|
|
|
|
let badges = {};
|
|
|
|
/**
|
|
* Increases the badged by one.
|
|
*/
|
|
function increaseBadged(quiet = false, request) {
|
|
if (!quiet) increaseURLCounter();
|
|
|
|
if(request === null) return;
|
|
|
|
const tabId = request.tabId;
|
|
const url = request.url;
|
|
|
|
if(tabId === -1) return;
|
|
|
|
if (badges[tabId] == null) {
|
|
badges[tabId] = {
|
|
counter: 1,
|
|
lastURL: url
|
|
};
|
|
} else {
|
|
badges[tabId].counter += 1;
|
|
}
|
|
|
|
checkOSAndroid().then((res) => {
|
|
if (!res) {
|
|
if (storage.badgedStatus && !quiet) {
|
|
browser.browserAction.setBadgeText({text: (badges[tabId]).counter.toString(), tabId: tabId}).catch(handleError);
|
|
} else {
|
|
browser.browserAction.setBadgeText({text: "", tabId: tabId}).catch(handleError);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Call by each tab is updated.
|
|
* And if url has changed.
|
|
*/
|
|
function handleUpdated(tabId, changeInfo, tabInfo) {
|
|
if(!badges[tabId] || !changeInfo.url) return;
|
|
|
|
if (badges[tabId].lastURL !== changeInfo.url) {
|
|
badges[tabId] = {
|
|
counter: 0,
|
|
lastURL: tabInfo.url
|
|
};
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Call by each tab is updated.
|
|
*/
|
|
browser.tabs.onUpdated.addListener(handleUpdated); |