mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2025-01-03 10:31:54 +01:00
settings sanitation: added missing APIs
This commit is contained in:
parent
320dc02941
commit
1430b89d55
@ -76,11 +76,13 @@
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
[
|
[
|
||||||
|
{mainFlag: "protectedCanvasPart", mainFlagDisabledValue: "nothing", section: "Canvas-API"},
|
||||||
{mainFlag: "protectAudio", section: "Audio-API"},
|
{mainFlag: "protectAudio", section: "Audio-API"},
|
||||||
{mainFlag: "protectWindow", section: "Window-API"},
|
{mainFlag: "protectWindow", section: "Window-API"},
|
||||||
{mainFlag: "protectDOMRect", section: "DOMRect-API"},
|
{mainFlag: "protectDOMRect", section: "DOMRect-API"},
|
||||||
|
{mainFlag: "protectNavigator", section: "Navigator-API"},
|
||||||
].forEach(function(api){
|
].forEach(function(api){
|
||||||
if (settings.get(api.mainFlag)){
|
if (settings.get(api.mainFlag) !== (api.mainFlagDisabledValue || false)){
|
||||||
let inSection = false;
|
let inSection = false;
|
||||||
let anyActive = false;
|
let anyActive = false;
|
||||||
if (getSectionKeys(api.section).every(function(key){
|
if (getSectionKeys(api.section).every(function(key){
|
||||||
@ -104,7 +106,7 @@
|
|||||||
{
|
{
|
||||||
label: extension.getTranslation("sanitation_resolution.disableMainFlag"),
|
label: extension.getTranslation("sanitation_resolution.disableMainFlag"),
|
||||||
callback: function(){
|
callback: function(){
|
||||||
settings.set(api.mainFlag, false);
|
settings.set(api.mainFlag, api.mainFlagDisabledValue || false);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
@ -7,6 +7,7 @@ Version 0.5.15:
|
|||||||
|
|
||||||
fixes:
|
fixes:
|
||||||
- background color of the textarea in the settings export was not readable in the dark theme when the value was invalid
|
- background color of the textarea in the settings export was not readable in the dark theme when the value was invalid
|
||||||
|
- settings sanitation: added missing APIs
|
||||||
|
|
||||||
known issues:
|
known issues:
|
||||||
- if a data URL is blocked the page action button does not appear
|
- if a data URL is blocked the page action button does not appear
|
||||||
|
Loading…
x
Reference in New Issue
Block a user