summaryrefslogtreecommitdiffstats
path: root/addon_chrome/ismitmlink/cs.js
diff options
context:
space:
mode:
authorwritecode <wri@tec.ode>2019-05-06 01:44:10 +0000
committerwritecode <wri@tec.ode>2019-05-06 01:44:10 +0000
commit00da252021162cac5f53770f01fc4bcf0a4d9989 (patch)
treee0c7d260402de6dbafc6d80012313961b611e684 /addon_chrome/ismitmlink/cs.js
parent5157e1ae44c790d4eeae9bdb7c227478e093ff8a (diff)
downloadcloudflare-tor-00da252021162cac5f53770f01fc4bcf0a4d9989.tar
cloudflare-tor-00da252021162cac5f53770f01fc4bcf0a4d9989.tar.gz
cloudflare-tor-00da252021162cac5f53770f01fc4bcf0a4d9989.tar.lz
cloudflare-tor-00da252021162cac5f53770f01fc4bcf0a4d9989.tar.xz
cloudflare-tor-00da252021162cac5f53770f01fc4bcf0a4d9989.zip
Upload files to 'addon_chrome/ismitmlink'
Diffstat (limited to 'addon_chrome/ismitmlink/cs.js')
-rw-r--r--addon_chrome/ismitmlink/cs.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/addon_chrome/ismitmlink/cs.js b/addon_chrome/ismitmlink/cs.js
new file mode 100644
index 00000000..6cf36f3a
--- /dev/null
+++ b/addon_chrome/ismitmlink/cs.js
@@ -0,0 +1,32 @@
+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);
+ chrome.runtime.sendMessage(aF);
+ }
+ });
+ chrome.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