Malicious Website Blocker

Block Sites that contain malware.

目前為 2022-06-07 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Malicious Website Blocker
// @namespace    http://tampermonkey.net/
// @version      2.0
// @description  Block Sites that contain malware.
// @author       Thundercatcher
// @match        http://*/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    {writePromise = new Promise((res) =>
    setTimeout(() => {
      document.write(`
      <p>............................................................................................................This website looks like it contains a virus. Please proceed back to <a href="https://www.google.com/">Google</a>.................................................................................................................</p>
      `);
      res();
    }, 250)
  );
}
})()