mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2024-11-01 02:48:44 +01:00
4601dd25af
Fixes #415
46 lines
1.4 KiB
JavaScript
46 lines
1.4 KiB
JavaScript
/* 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";
|
|
|
|
let scope;
|
|
if ((typeof exports) !== "undefined"){
|
|
scope = exports;
|
|
}
|
|
else {
|
|
scope = require.register("./modifiedNavigatorAPI", {});
|
|
}
|
|
|
|
const {checkerWrapper, setGetterProperties, getStatusByFlag} = require("./modifiedAPIFunctions");
|
|
const navigator = require("./navigator");
|
|
|
|
scope.changedGetters = navigator.allProperties.map(function(property){
|
|
return {
|
|
objectGetters: [function(window){return window.Navigator && window.Navigator.prototype;}],
|
|
name: property,
|
|
getterGenerator: function(checker){
|
|
const temp = {
|
|
get [property](){
|
|
return checkerWrapper(checker, this, arguments, function(args, check){
|
|
const {notify, original} = check;
|
|
const originalValue = original.call(this, ...args);
|
|
const returnValue = navigator.getNavigatorValue(property);
|
|
if (originalValue !== returnValue){
|
|
notify("fakedNavigatorReadout");
|
|
}
|
|
return returnValue;
|
|
});
|
|
}
|
|
};
|
|
return Object.getOwnPropertyDescriptor(temp, property).get;
|
|
}
|
|
};
|
|
});
|
|
|
|
setGetterProperties(scope.changedGetters, {
|
|
type: "readout",
|
|
getStatus: getStatusByFlag("protectNavigator"),
|
|
api: "navigator"
|
|
});
|
|
}()); |