1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-07-01 23:38:56 +02:00
CanvasBlocker/lib/main.js

66 lines
1.8 KiB
JavaScript
Raw Normal View History

2014-10-14 01:06:11 +02:00
/* global console */
2015-01-16 13:01:01 +01:00
/* 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/. */
2014-08-20 10:21:38 +02:00
(function(){
2014-10-14 01:06:11 +02:00
"use strict";
require("./stylePreferencePane");
// require("./disableWithoutDocumentElement");
const {changedFunctions} = require("./modifiedAPI");
const {notify} = require("./notifications");
const lists = require("./lists");
2014-08-01 12:03:23 +02:00
const sharedFunctions = require("./sharedFunctions");
2014-08-20 10:21:38 +02:00
// preferences
2014-10-11 00:07:51 +02:00
const observers = require("sdk/system/events");
const { when: unload } = require("sdk/system/unload");
const preferences = require("sdk/simple-prefs");
const prefs = preferences.prefs;
2014-12-15 18:43:47 +01:00
2014-10-11 00:07:51 +02:00
function checkURL(url){
return sharedFunctions.checkURL(url, prefs.blockMode);
2014-07-31 03:05:51 +02:00
}
2015-04-24 01:04:14 +02:00
var apiNames = Object.keys(changedFunctions);
var undef;
function intercept({subject: window}){
apiNames.forEach(function(name){
var changedFunction = changedFunctions[name];
var original = window.wrappedJSObject[changedFunction.object].prototype[name];
Object.defineProperty(
window.wrappedJSObject[changedFunction.object].prototype,
name,
{
enumerable: true,
configureable: false,
get: function(){
var status = checkURL(window.location);
if (status === changedFunction.mode){
var callingStackMsg = sharedFunctions.errorToCallingStackMsg(new Error());
switch (status){
case "fakeReadout":
// notify(window, callingStackMsg);
return changedFunction.fake;
//case "block":
default:
return undef;
2015-04-24 01:04:14 +02:00
}
}
else {
return original;
}
}
}
);
});
}
observers.on("content-document-global-created", intercept);
unload(function(){
observers.off("content-document-global-created", intercept);
2014-08-20 10:21:38 +02:00
});
}());