Hijack Worker

Hijack web workers in the browser to stop coin miner

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name Hijack Worker
// @version 0.2.0
// @description Hijack web workers in the browser to stop coin miner
// @homepageURL https://github.com/eight04/hijack-worker
// @supportURL https://github.com/eight04/hijack-worker/issues
// @license MIT
// @author eight04 <[email protected]>
// @include *
// @namespace eight04.blogspot.com
// @require https://greasyfork.org/scripts/7212-gm-config-eight-s-version/code/GM_config%20(eight's%20version).js?version=156587
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_registerMenuCommand
// @grant unsafeWindow
// @run-at document-start
// ==/UserScript==

/* global GM_config */

let blacklist = [];
let whitelist = [];

GM_config.setup({
	whitelist: {
		label: "Allowed URLs (regexp per line)",
		type: "textarea",
		default: ""
	},
	blacklist: {
		label: "Restricted URLs (regexp per line)",
		type: "textarea",
		default: ""
	}
}, () => {
	const config = GM_config.get();
	whitelist = getRxList(config.whitelist);
	blacklist = getRxList(config.blacklist);
});

function getRxList(text) {
  return text.trim().split(/\s*\n\s*/).filter(Boolean).map(p => new RegExp(p, "i"));
}

unsafeWindow.Worker = (Worker => {
	return class extends Worker {
		constructor(url, ...args) {
			if (!valid(url)) {
				throw new Error(`Worker is not allowed: ${url}`);
			}
      super(url, ...args);
		}
	};
})(unsafeWindow.Worker);

unsafeWindow.SharedWorker = (SharedWorker => {
	return class extends SharedWorker {
		constructor(url, ...args) {
			if (!valid(url)) {
				throw new Error(`SharedWorker is not allowed: ${url}`);
			}
      super(url, ...args);
		}
	};
})(unsafeWindow.SharedWorker);

const tempBlacklist = new Set;
const tempWhitelist = new Set;

function valid(url) {
  if (tempWhitelist.has(url)) {
    return true;
  }
  if (tempBlacklist.has(url)) {
    return false;
  }
  for (const rx of whitelist) {
    if (rx.test(url)) {
      tempWhitelist.add(url);
      return true;
    }
  }
  for (const rx of blacklist) {
    if (rx.test(url)) {
      tempBlacklist.add(url);
      return false;
    }
  }
  const message = `Do you want to allow web worker?
- from: ${location.href}
- target: ${url}`;
  console.log(message); // eslint-disable-line no-console
  if (confirm(message)) {
    tempWhitelist.add(url);
    return true;
  }
  tempBlacklist.add(url);
  return false;
}