📝 Added entire config directory for backup purposes

This commit is contained in:
z3rOR0ne 2022-11-03 00:09:22 -07:00
parent 4b38e59bb6
commit 9b946e2d14
11091 changed files with 1440953 additions and 0 deletions

View file

@ -0,0 +1,8 @@
<!DOCTYPE html>
<html>
<head><meta charset="utf-8"></head>
<body>
<script src="../config.js"></script>
<script src="chrome.js"></script>
</body>
</html>

View file

@ -0,0 +1,133 @@
var app = {};
app.name = function () {return chrome.runtime.getManifest().name};
app.version = function () {return chrome.runtime.getManifest().version};
app.short = function () {return chrome.runtime.getManifest().short_name};
app.homepage = function () {return chrome.runtime.getManifest().homepage_url};
app.tab = {"open": function (url) {chrome.tabs.create({"url": url, "active": true})}};
if (!navigator.webdriver) {
chrome.runtime.setUninstallURL(app.homepage() + "?v=" + app.version() + "&type=uninstall", function () {});
chrome.runtime.onInstalled.addListener(function (e) {
chrome.management.getSelf(function (result) {
if (result.installType === "normal") {
window.setTimeout(function () {
var previous = e.previousVersion !== undefined && e.previousVersion !== app.version();
var doupdate = previous && parseInt((Date.now() - config.welcome.lastupdate) / (24 * 3600 * 1000)) > 45;
if (e.reason === "install" || (e.reason === "update" && doupdate)) {
var parameter = (e.previousVersion ? "&p=" + e.previousVersion : '') + "&type=" + e.reason;
app.tab.open(app.homepage() + "?v=" + app.version() + parameter);
config.welcome.lastupdate = Date.now();
}
}, 3000);
}
});
});
}
app.notification = {
"id": (app.short() + "-fingerPrint-defender"),
"clear": function () {chrome.notifications.clear(app.notification.id)},
"create": function (message) {
chrome.notifications.clear(app.notification.id);
chrome.notifications.create(app.notification.id, {
"type": "basic",
"message": message,
"title": app.name(),
"iconUrl": chrome.runtime.getURL("data/icons/64.png")
});
}
};
app.contextmenu = (function () {
var clicked;
chrome.contextMenus.onClicked.addListener(function (e) {if (clicked) clicked(e)});
/* */
return {
"clicked": function (e) {clicked = e},
"create": function () {
chrome.contextMenus.removeAll(function () {
chrome.contextMenus.create({
"id": "test.page",
"contexts": ["browser_action"],
"title": "What is my Fingerprint"
});
/* */
chrome.contextMenus.create({
"type": "checkbox",
"contexts": ["browser_action"],
"title": "Desktop Notifications",
"checked": config.notification.show
});
});
}
};
})();
app.storage = (function () {
var objs = {};
window.setTimeout(function () {
chrome.storage.local.get(null, function (o) {
objs = o;
var script = document.createElement("script");
script.src = "../common.js";
document.body.appendChild(script);
});
}, 0);
/* */
return {
"read": function (id) {return objs[id]},
"write": function (id, data) {
var tmp = {};
tmp[id] = data;
objs[id] = data;
chrome.storage.local.set(tmp, function () {});
}
}
})();
app.popup = (function () {
var tmp = {};
chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
for (var id in tmp) {
if (tmp[id] && (typeof tmp[id] === "function")) {
if (request.path === "popup-to-background") {
if (request.method === id) tmp[id](request.data);
}
}
}
});
/* */
return {
"receive": function (id, callback) {tmp[id] = callback},
"send": function (id, data, tabId) {
chrome.runtime.sendMessage({"path": "background-to-popup", "method": id, "data": data});
}
}
})();
app.content_script = (function () {
var tmp = {};
chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
for (var id in tmp) {
if (tmp[id] && (typeof tmp[id] === "function")) {
if (request.path === "page-to-background") {
if (request.method === id) {
tmp[id](request.data);
}
}
}
}
});
/* */
return {
"receive": function (id, callback) {tmp[id] = callback},
"send": function (id, data) {
chrome.tabs.query({}, function (tabs) {
tabs.forEach(function (tab) {
chrome.tabs.sendMessage(tab.id, {"path": "background-to-page", "method": id, "data": data});
});
});
}
}
})();

View file

@ -0,0 +1,36 @@
app.popup.receive("load", function (e) {
app.popup.send("load", {
"notifications": config.notification.show
});
});
app.popup.receive("notifications", function () {
config.notification.show = !config.notification.show;
app.contextmenu.create();
app.popup.send("load", {
"notifications": config.notification.show
});
});
app.content_script.receive("fingerprint", function (e) {
var message = "\nA fingerprinting attempt is detected!\nYour browser is reporting a fake value.";
if (config.notification.show) {
if (config.notification.timeout) window.clearTimeout(config.notification.timeout);
config.notification.timeout = window.setTimeout(function () {
app.notification.create(e.host + message);
}, 1000);
}
});
app.contextmenu.clicked(function (e) {
if (e.menuItemId === "test.page") app.tab.open(config.test.page);
else {
config.notification.show = !config.notification.show;
app.contextmenu.create();
}
});
window.setTimeout(app.contextmenu.create, 300);
app.popup.receive("support", function () {app.tab.open(app.homepage())});
app.popup.receive("fingerprint", function () {app.tab.open(config.test.page)});
app.popup.receive("donation", function () {app.tab.open(app.homepage() + "?reason=support")});

View file

@ -0,0 +1,14 @@
var config = {};
config.test = {"page": "https://webbrowsertools.com/canvas-fingerprint/"};
config.welcome = {
set lastupdate (val) {app.storage.write("lastupdate", val)},
get lastupdate () {return app.storage.read("lastupdate") !== undefined ? app.storage.read("lastupdate") : 0}
};
config.notification = {
"timeout": null,
set show (val) {app.storage.write("notification", val)},
get show () {return app.storage.read("notification") !== undefined ? app.storage.read("notification") : true}
};