From 76b51e93f6d99cb320e45f23a8dc3dfe9f51ae16 Mon Sep 17 00:00:00 2001 From: writecode Date: Mon, 6 May 2019 02:31:06 +0000 Subject: [PATCH] Delete 'addon_firefox/bcma/cs.js' --- addon_firefox/bcma/cs.js | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 addon_firefox/bcma/cs.js diff --git a/addon_firefox/bcma/cs.js b/addon_firefox/bcma/cs.js deleted file mode 100644 index fdc2fe02..00000000 --- a/addon_firefox/bcma/cs.js +++ /dev/null @@ -1,32 +0,0 @@ -if (document.body && !['searxes.danwin1210.me', 'searxes.nmqnkngye4ct7bgss4bmv5ca3wpa55yugvxen5kz2bbq67lwy6ps54yd.onion', 'searxes.cyb'].includes(location.hostname)) { - let cs = (function () { - let s = document.createElement('style'); - document.head.appendChild(s); - return s.sheet; - })(); - if (cs) { - cs.insertRule("a[data-mitm]{text-decoration-line:line-through !important;text-decoration-color:red !important;text-decoration-style:double !important}", 0); - cs.insertRule("a[data-mitm]::before{content:'[\\26A0]';font-weight:bold !important;color:red !important;display:inline-block !important}", 1); - cs.insertRule("a[data-mitm]:hover::before{content:'[\\26A1]'}", 2); - cs.insertRule("a[data-mitm]:hover{color:red !important}", 3); - } - let asked = ['searxes.danwin1210.me', 'searxes.nmqnkngye4ct7bgss4bmv5ca3wpa55yugvxen5kz2bbq67lwy6ps54yd.onion', 'searxes.cyb', 'addons.mozilla.org']; - document.querySelectorAll("a[href^='http://']:not([data-mitm]),a[href^='https://']:not([data-mitm]),a[href^='//']:not([data-mitm])").forEach(a => { - let aF = (new URL(a.href)).hostname; - if (!/^(.*)\.(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) && !asked.includes(aF)) { - asked.push(aF); - browser.runtime.sendMessage(aF); - } - }); - browser.runtime.onMessage.addListener((request, sender, sendResponse) => { - if (request.length == 2) { - if (request[1]) { - document.querySelectorAll("a[href^='http://" + request[0] + "/']:not([data-mitm]),a[href^='https://" + request[0] + "/']:not([data-mitm]),a[href^='//" + request[0] + "/']:not([data-mitm])").forEach(a => { - a.dataset.mitm = 1; - a.title = 'DANGER! DANGER! MITM!'; - }); - } - } - sendResponse(null); - }); -} \ No newline at end of file