summaryrefslogtreecommitdiff
path: root/src/content
diff options
context:
space:
mode:
authorhackademix2018-10-12 22:35:46 +0200
committerhackademix2018-10-12 22:35:46 +0200
commite44fce3ebd6c348b9e09304d8b79e90f3867bd60 (patch)
treea98560cb9dff00a5204cd4f39f319bfca8596aa1 /src/content
parent9228798daa13086075907772e424892a9744f3d5 (diff)
downloadnoscript-e44fce3ebd6c348b9e09304d8b79e90f3867bd60.tar.gz
noscript-e44fce3ebd6c348b9e09304d8b79e90f3867bd60.tar.xz
noscript-e44fce3ebd6c348b9e09304d8b79e90f3867bd60.zip
Set tab restrictions status across all frames.
Diffstat (limited to 'src/content')
-rw-r--r--src/content/staticNS.js14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/content/staticNS.js b/src/content/staticNS.js
index 4e192b8..429814c 100644
--- a/src/content/staticNS.js
+++ b/src/content/staticNS.js
@@ -52,15 +52,12 @@
// mess with it, though, so we wrap it around auto-hiding accessors
if (this.config.MARKER = MARKER) {
+ let splitter = `${MARKER},`;
+ this.getWindowName = () => window.name.split(splitter).pop();
let tabInfoRx = new RegExp(`^${MARKER}\\[([^]*?)\\]${MARKER},`);
- let name = window.name;
- try {
- name = top.name;
- } catch(e) {
- // won't work cross-origin
- }
- let tabInfoMatch = name.match(tabInfoRx);
+
+ let tabInfoMatch = window.name.match(tabInfoRx);
if (tabInfoMatch) {
try {
this.config.tabInfo = JSON.parse(tabInfoMatch[1]);
@@ -68,8 +65,7 @@
error(e);
}
}
- let splitter = `${MARKER},`;
- this.getWindowName = () => window.name.split(splitter).pop();
+
Reflect.defineProperty(window.wrappedJSObject, "name", {
get: exportFunction(() => this.getWindowName(), window.wrappedJSObject),
set: exportFunction(value => {