Greasy Fork

Hello Bug

让你的网页充满更多恶搞!(蛤蛤(?))

目前为 2022-12-12 提交的版本。查看 最新版本

// ==UserScript==
// @name        Hello Bug
// @namespace   Violentmonkey Scripts
// @match       *://*/*
// @grant       none
// @version     2.0
// @author      L.W.Kevin0wvf
// @description 让你的网页充满更多恶搞!(蛤蛤(?))
// @license MIT
// ==/UserScript==
console.log("Hello Bug");
var q = new String("Hello Bug!");
alert(q);
async function runBug()
{
  var i = 0;
  try
  {
    do{
      i > q.length - 1 ? i = 0 : null;
      alert(q[i]+" - bug");
      i++;
    }while(true);
  }
  catch(e)
  {
    console.error(e+e.stack)
    console.error("Hello Bug!");
  }
  return true;
}
alert("Trick or treat!");
runBug();