mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2025-01-03 18:42:00 +01:00
Do not intercept when the SOP is in the way.
This commit is contained in:
parent
2a3abbcec7
commit
6c47397d46
10
lib/frame.js
10
lib/frame.js
@ -83,6 +83,16 @@
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
var href = window.location.href;
|
||||||
|
}
|
||||||
|
catch (e){
|
||||||
|
// we are unable to read the location due to SOP
|
||||||
|
// therefore we also can not intercept anything.
|
||||||
|
log("NOT intercepting window du to SOP", window);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
log("intercepting window", window);
|
log("intercepting window", window);
|
||||||
intercept(
|
intercept(
|
||||||
{subject: window},
|
{subject: window},
|
||||||
|
@ -32,7 +32,16 @@
|
|||||||
scope.setRandomSupplyByType = setRandomSupplyByType;
|
scope.setRandomSupplyByType = setRandomSupplyByType;
|
||||||
|
|
||||||
function getURL(window){
|
function getURL(window){
|
||||||
if (!window.location.href || window.location.href === "about:blank"){
|
var href;
|
||||||
|
try {
|
||||||
|
href = window.location.href;
|
||||||
|
}
|
||||||
|
catch (e){
|
||||||
|
// unable to read location due to SOP
|
||||||
|
// since we are not able to do anything in that case we can allow everything
|
||||||
|
return "about:SOP";
|
||||||
|
}
|
||||||
|
if (!href || href === "about:blank"){
|
||||||
if (window !== window.parent){
|
if (window !== window.parent){
|
||||||
return getURL(window.parent);
|
return getURL(window.parent);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user