mirror of
https://codeberg.org/crimeflare/cloudflare-tor
synced 2024-11-07 09:52:40 +00:00
117 lines
4.4 KiB
JavaScript
117 lines
4.4 KiB
JavaScript
if (document.body && !['searxes.nmqnkngye4ct7bgss4bmv5ca3wpa55yugvxen5kz2bbq67lwy6ps54yd.onion', 'searxes.eu.org', 'api.searxes.eu.org'].includes(location.hostname)) {
|
|
if (location.protocol === 'chrome-extension:') {
|
|
chrome.storage.local.get(['ign1', 'ign2', 'obs', 'dbg'], (g) => {
|
|
document.getElementById('ign1').checked = (g.ign1 == 'y') ? true : false;
|
|
document.getElementById('ign2').checked = (g.ign2 == 'y') ? true : false;
|
|
document.getElementById('obs').checked = (g.obs == 'y') ? true : false;
|
|
});
|
|
document.getElementById('ign1').addEventListener('click', () => {
|
|
chrome.storage.local.set({
|
|
'ign1': (document.getElementById('ign1').checked ? 'y' : 'n')
|
|
});
|
|
});
|
|
document.getElementById('ign2').addEventListener('click', () => {
|
|
chrome.storage.local.set({
|
|
'ign2': (document.getElementById('ign2').checked ? 'y' : 'n')
|
|
});
|
|
});
|
|
document.getElementById('obs').addEventListener('click', () => {
|
|
chrome.storage.local.set({
|
|
'obs': (document.getElementById('obs').checked ? 'y' : 'n')
|
|
});
|
|
});
|
|
chrome.storage.local.get(null, (g) => {
|
|
let iY = 0,
|
|
iN = 0,
|
|
iT, tmp;
|
|
Object.keys(g).forEach(a => {
|
|
if (!['ign1', 'ign2', 'obs', 'dbg', 'lastU', 'lastV'].includes(a)) {
|
|
if (g[a] == 'y') {
|
|
iY++;
|
|
}
|
|
if (g[a] == 'n') {
|
|
iN++;
|
|
}
|
|
}
|
|
});
|
|
iT = iY + iN;
|
|
if (iT > 0) {
|
|
tmp = (iY * 100 / iT).toFixed(1);
|
|
document.getElementById('viry').value = iY + ' domajnoj (' + tmp + '%)';
|
|
tmp = (iN * 100 / iT).toFixed(1);
|
|
document.getElementById('virn').value = iN + ' domajnoj (' + tmp + '%)';
|
|
document.getElementById('viro').value = (iY + iN) + ' domajnoj';
|
|
}
|
|
});
|
|
} else {
|
|
let cs = (function () {
|
|
let s = document.createElement('style');
|
|
document.head.appendChild(s);
|
|
return s.sheet;
|
|
})();
|
|
if (cs) {
|
|
cs.insertRule("a[data-mitm=y]{cursor:not-allowed !important;text-decoration-line:line-through !important;text-decoration-color:red !important;text-decoration-style:double !important}", 0);
|
|
cs.insertRule("a[data-mitm=y]::before{content:'[\\26A0]';font-weight:bold !important;color:red !important;display:inline-block !important}", 1);
|
|
cs.insertRule("a[data-mitm=y]:hover::before{content:'[\\26A1]'}", 2);
|
|
cs.insertRule("a[data-mitm=y]:hover{color:red !important}", 3);
|
|
cs.insertRule("img[data-mitm=y]{cursor:not-allowed !important;border:2px red dotted !important}", 4);
|
|
cs.insertRule("img[data-mitm=y]:hover{filter:sepia(20%)}", 5);
|
|
}
|
|
chrome.storage.local.get(['ign1', 'ign2', 'obs'], (g) => {
|
|
let asked = ['', 'searxes.nmqnkngye4ct7bgss4bmv5ca3wpa55yugvxen5kz2bbq67lwy6ps54yd.onion', 'searxes.eu.org', 'api.searxes.eu.org', 'addons.mozilla.org', 'addons.thunderbird.net', 'web.archive.org', 't.co'];
|
|
let qstall = (g.ign2 == 'y') ? 'a[href]:not([data-mitm])' : 'a[href]:not([data-mitm]),img[src]:not([data-mitm])';
|
|
let running = false;
|
|
function scanme() {
|
|
if (!running) {
|
|
running = true;
|
|
if (location.hostname == 'twitter.com') {
|
|
document.querySelectorAll("a[href^='https://t.co/'][data-expanded-url^='http']").forEach(a => {
|
|
a.href = a.dataset.expandedUrl;
|
|
});
|
|
}
|
|
let unknown = [];
|
|
document.querySelectorAll(qstall).forEach(a => {
|
|
let aF = (a.tagName == 'A' ? (new URL(a.href)).hostname : (new URL(a.src)).hostname) || '';
|
|
if (!asked.includes(aF)) {
|
|
asked.push(aF);
|
|
if (!/^(.*)\.(danwin1210\.me|onion|i2p|invalid|test|local|localhost|([0-9]{1,3})|bbs|chan|cyb|dyn|geek|gopher|indy|libre|neo|null|o|oss|oz|parody|pirate|bit|lib|coin|emc|bazar|fur)$/.test(aF)) {
|
|
unknown.push(aF);
|
|
}
|
|
}
|
|
});
|
|
unknown.forEach(a => {
|
|
chrome.runtime.sendMessage(a);
|
|
});
|
|
running = false;
|
|
}
|
|
}
|
|
chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
|
|
if (request.length == 2) {
|
|
document.querySelectorAll(qstall).forEach(a => {
|
|
let aF = (a.tagName == 'A' ? (new URL(a.href)).hostname : (new URL(a.src)).hostname) || '';
|
|
if (aF == request[0]) {
|
|
if (request[1]) {
|
|
a.dataset.mitm = 'y';
|
|
a.title = 'MITM!';
|
|
} else {
|
|
a.dataset.mitm = 'n';
|
|
}
|
|
}
|
|
});
|
|
}
|
|
sendResponse(null);
|
|
return;
|
|
});
|
|
scanme();
|
|
if (g.obs == 'y') {
|
|
window.addEventListener('load', function () {
|
|
(new MutationObserver(scanme)).observe(document, {
|
|
attributes: true,
|
|
childList: true,
|
|
subtree: true
|
|
});
|
|
});
|
|
}
|
|
});
|
|
}
|
|
} |