mirror of
https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean.git
synced 2024-11-10 10:47:49 +01:00
74 lines
2.5 KiB
JavaScript
74 lines
2.5 KiB
JavaScript
"use strict";
|
|
var ext_api = (typeof browser === 'object') ? browser : chrome;
|
|
var manifestData = ext_api.runtime.getManifest();
|
|
var navigator_ua = navigator.userAgent;
|
|
var navigator_ua_mobile = navigator_ua.toLowerCase().includes('mobile');
|
|
var custom_switch = ((manifestData.optional_permissions && manifestData.optional_permissions.length) || (manifestData.optional_host_permissions && manifestData.optional_host_permissions.length)) && !navigator_ua_mobile;
|
|
|
|
window.addEventListener("load", function () {
|
|
document.getElementById("button-close").addEventListener("click", function () {
|
|
window.close();
|
|
});
|
|
|
|
var custom_enabled = document.getElementById('custom-enabled');
|
|
ext_api.permissions.contains({
|
|
origins: ["*://*/*"]
|
|
}, function (result) {
|
|
if (result) {
|
|
custom_enabled.innerText = 'YES';
|
|
} else {
|
|
custom_enabled.innerText = 'NO';
|
|
}
|
|
});
|
|
|
|
if (custom_switch) {
|
|
|
|
document.querySelector('#custom-enable').addEventListener('click', function (event) {
|
|
ext_api.permissions.request({
|
|
origins: ["*://*/*"]
|
|
}, function (granted) {
|
|
if (granted) {
|
|
custom_enabled.innerText = 'YES';
|
|
ext_api.storage.local.set({
|
|
"customOptIn": true
|
|
});
|
|
} else {
|
|
custom_enabled.innerText = 'NO';
|
|
}
|
|
});
|
|
});
|
|
|
|
document.querySelector('#custom-disable').addEventListener('click', function (event) {
|
|
ext_api.permissions.remove({
|
|
origins: ["*://*/*", "<all_urls>"]
|
|
}, function (removed) {
|
|
if (removed) {
|
|
custom_enabled.innerText = 'NO';
|
|
ext_api.storage.local.set({
|
|
"customOptIn": false
|
|
});
|
|
}
|
|
});
|
|
});
|
|
|
|
}// custom_switch
|
|
|
|
var update_enabled = document.getElementById('update-enabled');
|
|
ext_api.storage.local.get({optInUpdate: true}, function (result) {
|
|
update_enabled.innerText = result.optInUpdate ? 'YES' : 'NO';
|
|
});
|
|
|
|
document.getElementById("update-enable").addEventListener("click", function () {
|
|
ext_api.storage.local.set({
|
|
"optInUpdate": true
|
|
});
|
|
update_enabled.innerText = 'YES';
|
|
});
|
|
|
|
document.getElementById("update-disable").addEventListener("click", function () {
|
|
ext_api.storage.local.set({
|
|
"optInUpdate": false
|
|
});
|
|
update_enabled.innerText = 'NO';
|
|
});
|
|
});
|