2019-05-04 01:12:45 +02:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
(function(){
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const extension = require("../lib/extension");
|
|
|
|
const settings = require("../lib/settings");
|
|
|
|
const settingContainers = require("../lib/settingContainers");
|
|
|
|
require("../lib/theme").init();
|
|
|
|
const searchParameters = new URLSearchParams(window.location.search);
|
|
|
|
|
|
|
|
|
2019-11-28 01:26:35 +01:00
|
|
|
const title = document.createElement("h1");
|
2019-05-04 01:12:45 +02:00
|
|
|
title.className = "title";
|
|
|
|
title.textContent = extension.getTranslation("whitelist_inspection_title");
|
|
|
|
document.body.appendChild(title);
|
|
|
|
|
|
|
|
document.querySelector("head title").textContent = title.textContent;
|
|
|
|
|
2021-03-06 22:52:52 +01:00
|
|
|
const description = document.createElement("div");
|
|
|
|
description.className = "description";
|
|
|
|
description.textContent = extension.getTranslation("whitelist_inspection_description");
|
|
|
|
document.body.appendChild(description);
|
|
|
|
|
2019-11-28 01:26:35 +01:00
|
|
|
|
|
|
|
const whitelistSettings = [
|
|
|
|
{
|
|
|
|
title: extension.getTranslation("whitelist_all_apis"),
|
|
|
|
name: "blockMode",
|
|
|
|
whitelistValue: "allow",
|
|
|
|
protectedValue: "fake"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: extension.getTranslation("section_canvas-api"),
|
|
|
|
name: "protectedCanvasPart",
|
|
|
|
whitelistValue: "nothing",
|
|
|
|
protectedValue: "readout"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: extension.getTranslation("section_audio-api"),
|
|
|
|
name: "protectAudio",
|
|
|
|
whitelistValue: false,
|
|
|
|
protectedValue: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: extension.getTranslation("section_history-api"),
|
|
|
|
name: "historyLengthThreshold",
|
|
|
|
whitelistValue: 10000,
|
|
|
|
protectedValue: 2
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: extension.getTranslation("section_window-api"),
|
|
|
|
name: "protectWindow",
|
|
|
|
whitelistValue: false,
|
|
|
|
protectedValue: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: extension.getTranslation("section_DOMRect-api"),
|
|
|
|
name: "protectDOMRect",
|
|
|
|
whitelistValue: false,
|
|
|
|
protectedValue: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: extension.getTranslation("section_navigator-api"),
|
|
|
|
name: "protectNavigator",
|
|
|
|
whitelistValue: false,
|
|
|
|
protectedValue: true
|
|
|
|
},
|
2019-12-09 00:31:08 +01:00
|
|
|
{
|
|
|
|
title: extension.getTranslation("section_screen-api"),
|
|
|
|
name: "protectScreen",
|
|
|
|
whitelistValue: false,
|
|
|
|
protectedValue: true
|
|
|
|
},
|
2019-11-28 01:26:35 +01:00
|
|
|
];
|
|
|
|
|
2019-05-04 01:12:45 +02:00
|
|
|
settings.onloaded(function(){
|
|
|
|
const sets = settingContainers.urlContainer.get();
|
|
|
|
|
2021-03-06 22:52:52 +01:00
|
|
|
const selectLabel = document.createElement("label");
|
|
|
|
selectLabel.textContent = "URL ";
|
|
|
|
document.body.appendChild(selectLabel);
|
|
|
|
|
2019-05-04 01:12:45 +02:00
|
|
|
const setSelect = document.createElement("select");
|
|
|
|
sets.forEach(function(set){
|
|
|
|
setSelect.appendChild(new Option(set.url));
|
|
|
|
});
|
2021-03-06 22:52:52 +01:00
|
|
|
selectLabel.appendChild(setSelect);
|
2019-05-04 01:12:45 +02:00
|
|
|
|
|
|
|
if (searchParameters.has("urls")){
|
|
|
|
const urls = JSON.parse(searchParameters.get("urls")).map(function(url){
|
|
|
|
return new URL(url);
|
|
|
|
});
|
|
|
|
if (
|
|
|
|
!sets.some(function(set, index){
|
|
|
|
if (urls.some(function(url){
|
|
|
|
return set.match && set.match(url);
|
|
|
|
})){
|
|
|
|
setSelect.selectedIndex = index;
|
|
|
|
return true;
|
|
|
|
}
|
2019-12-01 01:25:39 +01:00
|
|
|
return false;
|
2019-05-04 01:12:45 +02:00
|
|
|
}) &&
|
|
|
|
searchParameters.has("domain")
|
|
|
|
){
|
|
|
|
setSelect.appendChild(new Option(searchParameters.get("domain")));
|
|
|
|
setSelect.selectedIndex = setSelect.options.length - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const table = document.createElement("table");
|
|
|
|
whitelistSettings.forEach(function(setting){
|
2020-06-17 16:18:56 +02:00
|
|
|
const settingDefinition = settings.getDefinition(setting.name);
|
2019-05-04 01:12:45 +02:00
|
|
|
const row = document.createElement("tr");
|
|
|
|
setting.row = row;
|
|
|
|
const name = document.createElement("td");
|
|
|
|
name.textContent = setting.title || extension.getTranslation(setting.name + "_title");
|
|
|
|
row.appendChild(name);
|
|
|
|
setting.input = document.createElement("input");
|
|
|
|
setting.input.type = "checkbox";
|
|
|
|
setting.input.addEventListener("change", function(){
|
2020-06-17 16:18:56 +02:00
|
|
|
const value = this.checked? setting.protectedValue: setting.whitelistValue;
|
|
|
|
if (settingDefinition.get() === value){
|
|
|
|
settingDefinition.reset(setSelect.value);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
settingDefinition.set(value, setSelect.value);
|
|
|
|
}
|
2019-05-04 01:12:45 +02:00
|
|
|
});
|
|
|
|
const input = document.createElement("td");
|
|
|
|
input.appendChild(setting.input);
|
|
|
|
row.appendChild(input);
|
|
|
|
table.appendChild(row);
|
|
|
|
});
|
|
|
|
document.body.appendChild(table);
|
|
|
|
|
|
|
|
function update(){
|
|
|
|
whitelistSettings.forEach(function(setting){
|
|
|
|
setting.row.style.display = settings.get(setting.name) === setting.whitelistValue?
|
|
|
|
"none":
|
|
|
|
"";
|
|
|
|
|
|
|
|
const currentValue = settings.get(setting.name, setSelect.value);
|
|
|
|
setting.input.checked = currentValue !== setting.whitelistValue;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
update();
|
|
|
|
setSelect.addEventListener("change", update);
|
|
|
|
settings.on("any", update);
|
|
|
|
});
|
|
|
|
}());
|