mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2024-12-22 12:50:36 +01:00
parent
27ddc8a683
commit
1737344480
@ -159,20 +159,22 @@
|
||||
"write"
|
||||
);
|
||||
const documentWrite = documentWriteDescriptor.value;
|
||||
documentWriteDescriptor.value = exportFunction(function write(str){
|
||||
str = "" + str;
|
||||
// weird problem with waterfox and google docs
|
||||
const parts = (
|
||||
str.match(/^\s*<!doctype/i) &&
|
||||
!str.match(/frame/i)
|
||||
)? [str]: str.split(/(?=<)/);
|
||||
const length = parts.length;
|
||||
const scripts = window.document.getElementsByTagName("script");
|
||||
for (let i = 0; i < length; i += 1){
|
||||
documentWrite.call(this, parts[i]);
|
||||
allCallback();
|
||||
if (scripts.length && scripts[scripts.length - 1].src){
|
||||
observe();
|
||||
documentWriteDescriptor.value = exportFunction(function write(markup){
|
||||
for (let i = 0, l = arguments.length; i < l; i += 1){
|
||||
const str = "" + arguments[i];
|
||||
// weird problem with waterfox and google docs
|
||||
const parts = (
|
||||
str.match(/^\s*<!doctype/i) &&
|
||||
!str.match(/frame/i)
|
||||
)? [str]: str.split(/(?=<)/);
|
||||
const length = parts.length;
|
||||
const scripts = window.document.getElementsByTagName("script");
|
||||
for (let i = 0; i < length; i += 1){
|
||||
documentWrite.call(this, parts[i]);
|
||||
allCallback();
|
||||
if (scripts.length && scripts[scripts.length - 1].src){
|
||||
observe();
|
||||
}
|
||||
}
|
||||
}
|
||||
}, window);
|
||||
@ -186,19 +188,21 @@
|
||||
"writeln"
|
||||
);
|
||||
const documentWriteln = documentWritelnDescriptor.value;
|
||||
documentWritelnDescriptor.value = exportFunction(function writeln(str){
|
||||
str = "" + str;
|
||||
const parts = str.split(/(?=<)/);
|
||||
const length = parts.length - 1;
|
||||
const scripts = window.document.getElementsByTagName("script");
|
||||
for (let i = 0; i < length; i += 1){
|
||||
documentWrite.call(this, parts[i]);
|
||||
allCallback();
|
||||
if (scripts.length && scripts[scripts.length - 1].src){
|
||||
observe();
|
||||
documentWritelnDescriptor.value = exportFunction(function writeln(markup){
|
||||
for (let i = 0, l = arguments.length; i < l; i += 1){
|
||||
const str = "" + arguments[i];
|
||||
const parts = str.split(/(?=<)/);
|
||||
const length = parts.length;
|
||||
const scripts = window.document.getElementsByTagName("script");
|
||||
for (let i = 0; i < length; i += 1){
|
||||
documentWrite.call(this, parts[i]);
|
||||
allCallback();
|
||||
if (scripts.length && scripts[scripts.length - 1].src){
|
||||
observe();
|
||||
}
|
||||
}
|
||||
}
|
||||
documentWriteln.call(this, parts[length]);
|
||||
documentWriteln.call(this, "");
|
||||
}, window);
|
||||
Object.defineProperty(wrappedWindow.HTMLDocument.prototype, "writeln", documentWritelnDescriptor);
|
||||
};
|
||||
|
@ -8,6 +8,7 @@ Version 0.5.11:
|
||||
|
||||
fixes:
|
||||
- improved protection of (i)frame properties
|
||||
- document.write and document.writeln protection broke pages
|
||||
|
||||
known issues:
|
||||
- if a data URL is blocked the page action button does not appear
|
||||
|
@ -13,6 +13,10 @@
|
||||
{
|
||||
"version": "0.5.11Alpha20190611",
|
||||
"update_link": "https://canvasblocker.kkapsner.de/versions/canvasblocker_beta-0.5.11Alpha20190611-an+fx.xpi"
|
||||
},
|
||||
{
|
||||
"version": "0.5.11Alpha20190612",
|
||||
"update_link": "https://canvasblocker.kkapsner.de/versions/canvasblocker_beta-0.5.11Alpha20190612-an+fx.xpi"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user