2017-01-31 21:31:55 +01:00
|
|
|
/* jslint moz: true */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
(function(){
|
|
|
|
"use strict";
|
2017-07-07 08:49:12 +02:00
|
|
|
function log(...args){
|
|
|
|
function leftPad(str, char, pad){
|
|
|
|
str = "" + str;
|
|
|
|
return char.repeat(pad - str.length) + str;
|
|
|
|
}
|
|
|
|
args.unshift("frame script:");
|
|
|
|
var now = new Date();
|
|
|
|
args.unshift(
|
|
|
|
now.getFullYear() + "-" +
|
|
|
|
leftPad(now.getMonth() + 1, "0", 2) + "-" +
|
|
|
|
leftPad(now.getDate(), "0", 2) + " " +
|
|
|
|
leftPad(now.getHours(), "0", 2) + ":" +
|
|
|
|
leftPad(now.getMinutes(), "0", 2) + ":" +
|
|
|
|
leftPad(now.getSeconds(), "0", 2) + "." +
|
|
|
|
leftPad(now.getMilliseconds(), "0", 3)
|
|
|
|
);
|
|
|
|
console.log.apply(console, args);
|
|
|
|
}
|
|
|
|
|
2017-01-31 21:31:55 +01:00
|
|
|
const {intercept} = require("./intercept.js");
|
|
|
|
const {ask} = require("./askForPermission.js");
|
|
|
|
const {check: originalCheck, checkStack: originalCheckStack} = require("./check.js");
|
|
|
|
|
|
|
|
// Variable to "unload" the script
|
|
|
|
var enabled = true;
|
|
|
|
|
2017-07-07 08:49:12 +02:00
|
|
|
log("starting", location.href);
|
2017-01-31 21:31:55 +01:00
|
|
|
|
|
|
|
function check(message){
|
|
|
|
if (enabled){
|
|
|
|
return originalCheck(message);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return {type: [], mode: "allow"};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function checkStack(stack){
|
|
|
|
if (enabled){
|
|
|
|
return originalCheckStack(stack);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const _ = require("sdk/l10n").get;
|
|
|
|
function askWrapper(data){
|
|
|
|
return ask(data, {
|
|
|
|
_,
|
|
|
|
prefs
|
|
|
|
});
|
|
|
|
}
|
2017-07-16 00:25:19 +02:00
|
|
|
|
|
|
|
log("open port to background script");
|
2017-06-29 07:21:36 +02:00
|
|
|
var port = browser.runtime.connect();
|
|
|
|
var tabId;
|
|
|
|
port.onMessage.addListener(function(data){
|
|
|
|
if (data.hasOwnProperty("tabId")){
|
2017-07-07 08:49:12 +02:00
|
|
|
log("my tab id is", data.tabId);
|
2017-06-29 07:21:36 +02:00
|
|
|
tabId = data.tabId;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
var notifications = [];
|
2017-01-31 21:31:55 +01:00
|
|
|
function notify(data){
|
2017-06-29 07:21:36 +02:00
|
|
|
notifications.push(data);
|
|
|
|
port.postMessage({"canvasBlocker-notify": data});
|
2017-01-31 21:31:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const preferences = require("sdk/simple-prefs");
|
|
|
|
function prefs(name){
|
|
|
|
return preferences.prefs[name];
|
|
|
|
}
|
|
|
|
|
2017-06-25 22:33:12 +02:00
|
|
|
|
|
|
|
var interceptedWindows = new WeakMap();
|
|
|
|
function interceptWindow(window){
|
2017-07-07 08:49:12 +02:00
|
|
|
if (!enabled || interceptedWindows.get(window)){
|
2017-06-25 22:33:12 +02:00
|
|
|
return false;
|
|
|
|
}
|
2017-07-16 00:25:19 +02:00
|
|
|
|
2017-07-18 16:14:03 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-07-16 00:25:19 +02:00
|
|
|
log("intercepting window", window);
|
2017-06-25 22:33:12 +02:00
|
|
|
intercept(
|
|
|
|
{subject: window},
|
|
|
|
{check, checkStack, ask: askWrapper, notify, prefs}
|
|
|
|
);
|
|
|
|
|
|
|
|
[window.HTMLIFrameElement, window.HTMLFrameElement].forEach(function(constructor){
|
|
|
|
var oldContentWindowGetter = constructor.prototype.__lookupGetter__("contentWindow");
|
|
|
|
Object.defineProperty(
|
|
|
|
constructor.prototype.wrappedJSObject,
|
|
|
|
"contentWindow",
|
|
|
|
{
|
|
|
|
enumerable: true,
|
|
|
|
configureable: true,
|
|
|
|
get: exportFunction(function(){
|
|
|
|
var window = oldContentWindowGetter.call(this);
|
|
|
|
interceptWindow(window);
|
|
|
|
return window;
|
|
|
|
}, window)
|
|
|
|
}
|
|
|
|
);
|
|
|
|
var oldContentDocumentGetter = constructor.prototype.__lookupGetter__("contentDocument");
|
|
|
|
Object.defineProperty(
|
|
|
|
constructor.prototype.wrappedJSObject,
|
|
|
|
"contentDocument",
|
|
|
|
{
|
|
|
|
enumerable: true,
|
|
|
|
configureable: true,
|
|
|
|
get: exportFunction(function(){
|
|
|
|
var document = oldContentDocumentGetter.call(this);
|
|
|
|
interceptWindow(document.defaultView);
|
|
|
|
return document;
|
|
|
|
}, window)
|
|
|
|
}
|
|
|
|
);
|
2017-01-31 21:31:55 +01:00
|
|
|
});
|
2017-06-25 22:33:12 +02:00
|
|
|
|
|
|
|
interceptedWindows.set(window, true);
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
2017-07-07 08:49:12 +02:00
|
|
|
interceptWindow(window);
|
|
|
|
|
2017-07-16 00:25:19 +02:00
|
|
|
log("register listener for messages from background script");
|
2017-06-25 22:33:12 +02:00
|
|
|
browser.runtime.onMessage.addListener(function(data){
|
|
|
|
if (data["canvasBlocker-unload"]){
|
|
|
|
enabled = false;
|
|
|
|
}
|
2017-07-18 16:16:38 +02:00
|
|
|
if (data.hasOwnProperty("canvasBlocker-sendNotifications") && data["canvasBlocker-sendNotifications"] === tabId){
|
2017-06-29 07:21:36 +02:00
|
|
|
browser.runtime.sendMessage({
|
|
|
|
sender: tabId,
|
|
|
|
"canvasBlocker-notifications": notifications
|
|
|
|
});
|
|
|
|
}
|
2017-01-31 21:31:55 +01:00
|
|
|
});
|
2017-07-07 08:49:12 +02:00
|
|
|
|
2017-07-18 16:17:19 +02:00
|
|
|
browser.storage.local.get().then(function(data){
|
|
|
|
Object.keys(data).forEach(function(key){
|
|
|
|
log("loaded setting:", key, ":", data[key]);
|
|
|
|
settings[key] = data[key];
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-07-16 00:25:19 +02:00
|
|
|
log("register listener for settings changes");
|
2017-07-07 08:49:12 +02:00
|
|
|
browser.storage.onChanged.addListener(function(change, area){
|
|
|
|
if (area === "local"){
|
|
|
|
Object.keys(change).forEach(function(key){
|
|
|
|
settings[key] = change[key].newValue;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2017-01-31 21:31:55 +01:00
|
|
|
}());
|