mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2024-12-22 12:50:36 +01:00
parent
9fd454eb03
commit
cb39d59c8f
1
.vscode/settings.json
vendored
1
.vscode/settings.json
vendored
@ -4,6 +4,7 @@
|
|||||||
"Blockiermodi",
|
"Blockiermodi",
|
||||||
"Blockiermodus",
|
"Blockiermodus",
|
||||||
"Captcha",
|
"Captcha",
|
||||||
|
"Funktionalitätstest",
|
||||||
"Ignorierliste",
|
"Ignorierliste",
|
||||||
"KHTML",
|
"KHTML",
|
||||||
"Maleficient",
|
"Maleficient",
|
||||||
|
@ -1035,6 +1035,10 @@
|
|||||||
"message": "Auf dieser Seite können Sie die Navigatoreinstellungen festlegen. Wenn Sie eine Voreinstellung verwenden möchten, sollten Sie immer sowohl eine Betriebssystem- als auch eine Browservoreinstellung verwenden. Danach können Sie Ihre individuellen Änderungen vornehmen.",
|
"message": "Auf dieser Seite können Sie die Navigatoreinstellungen festlegen. Wenn Sie eine Voreinstellung verwenden möchten, sollten Sie immer sowohl eine Betriebssystem- als auch eine Browservoreinstellung verwenden. Danach können Sie Ihre individuellen Änderungen vornehmen.",
|
||||||
"description": ""
|
"description": ""
|
||||||
},
|
},
|
||||||
|
"navigatorSettings_disclaimer": {
|
||||||
|
"message": "ACHTUNG: der tatsächlich verwendete Browser kann nicht komplett vorgetäuscht werden, da es eine Vielzahl von Möglichkeiten gibt, diesen zu detektieren. Z.B. kann er immer über Funktionalitätstest und Browser spezifische Darstellung von HTML-Elementen bestimmt werden.",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
"navigatorSettings_presetSection.os": {
|
"navigatorSettings_presetSection.os": {
|
||||||
"message": "Betriebssystemvoreinstellungen",
|
"message": "Betriebssystemvoreinstellungen",
|
||||||
"description": ""
|
"description": ""
|
||||||
|
@ -1081,6 +1081,10 @@
|
|||||||
"message": "On this page you can set the navigator settings. If using a preset you should always use an operating system and browser preset. After selecting these you can still make modifications.",
|
"message": "On this page you can set the navigator settings. If using a preset you should always use an operating system and browser preset. After selecting these you can still make modifications.",
|
||||||
"description": ""
|
"description": ""
|
||||||
},
|
},
|
||||||
|
"navigatorSettings_disclaimer": {
|
||||||
|
"message": "CAUTION: the actual browser in use cannot be faked entirely as there is multitude of ways to detect it. E.g. feature tests and browser specific rendering of HTML elements will always leak.",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
"navigatorSettings_presetSection.os": {
|
"navigatorSettings_presetSection.os": {
|
||||||
"message": "Operating system presets",
|
"message": "Operating system presets",
|
||||||
"description": ""
|
"description": ""
|
||||||
|
@ -21,6 +21,11 @@
|
|||||||
description.textContent = extension.getTranslation("navigatorSettings_description");
|
description.textContent = extension.getTranslation("navigatorSettings_description");
|
||||||
document.body.appendChild(description);
|
document.body.appendChild(description);
|
||||||
|
|
||||||
|
const disclaimer = document.createElement("div");
|
||||||
|
disclaimer.className = "disclaimer";
|
||||||
|
disclaimer.textContent = extension.getTranslation("navigatorSettings_disclaimer");
|
||||||
|
document.body.appendChild(disclaimer);
|
||||||
|
|
||||||
function presetSection(title, presets){
|
function presetSection(title, presets){
|
||||||
const container = document.createElement("div");
|
const container = document.createElement("div");
|
||||||
container.className = "presetSection";
|
container.className = "presetSection";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user