bypass-paywalls-firefox-clean/options/popup.js

75 lines
2.2 KiB
JavaScript
Raw Normal View History

var ext_api = (typeof browser === 'object') ? browser : chrome;
2020-11-05 22:21:41 +01:00
2021-02-17 19:11:27 +01:00
function popup_show_toggle(domain, enabled) {
if (domain) {
var site_switch_span = document.getElementById('site_switch_span');
let labelEl = document.createElement('label');
labelEl.setAttribute('class', 'switch');
let inputEl = document.createElement('input');
inputEl.setAttribute('id', 'site_switch');
inputEl.setAttribute('type', 'checkbox');
if (enabled)
inputEl.setAttribute('checked', true);
labelEl.appendChild(inputEl);
let spanEl = document.createElement('span');
spanEl.setAttribute('class', 'slider round');
spanEl.setAttribute('title', 'en/disable current site in BPC');
labelEl.appendChild(spanEl);
site_switch_span.appendChild(labelEl);
document.getElementById("site_switch").addEventListener('click', function () {
ext_api.runtime.sendMessage({
request: 'site_switch'
});
//open(location).close();
});
}
2020-11-05 22:21:41 +01:00
};
2021-02-17 19:11:27 +01:00
ext_api.runtime.sendMessage({
request: 'popup_show_toggle'
});
2021-02-17 19:11:27 +01:00
ext_api.runtime.onMessage.addListener(function (message, sender) {
if (message.msg === 'popup_show_toggle' && message.data) {
popup_show_toggle(message.data.domain, message.data.enabled)
}
});
var cookie_domain;
ext_api.tabs.query({
active: true,
currentWindow: true
}, function (tabs) {
if (tabs && tabs[0] && tabs[0].url && tabs[0].url.startsWith('http')) {
let hostname = new URL(tabs[0].url).hostname;
2022-01-13 17:22:38 +01:00
cookie_domain = getCookiePermDomain(hostname);
}
2021-02-17 19:11:27 +01:00
});
2020-11-05 22:21:41 +01:00
document.getElementById("clear_cookies").addEventListener('click', function () {
ext_api.permissions.request({
origins: ["*://*." + cookie_domain + "/*"]
}, function (granted) {
if (granted) {
ext_api.runtime.sendMessage({
request: 'clear_cookies'
});
}
});
});
function closeButton() {
window.close();
}
2022-01-13 17:22:38 +01:00
function getCookiePermDomain(hostname) {
let domain = hostname.replace(/^(www|amp(html)?|m|wap)(\d)?\./, '');
let domain_split = domain.split('.');
let num = 2;
if (domain_split.length > 2 && domain.match(/(\w){2,4}\.(\w){2}$/))
num = 3;
domain = domain_split.slice(-num).join('.');
return domain;
}
document.getElementById("button-close").addEventListener('click', closeButton);