您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
read name
- // ==UserScript==
- // @name proboards disable redirect.viglink.com
- // @namespace https://gdccdated.glitch.me/
- // @description read name
- // @author BZZZZ
- // @license GPLv3
- // @include /^https?\:\/\/[^.]+\.(?:proboards\.com|freeforums\.net|boards\.net)\//
- // @exclude /^https?\:\/\/www\.proboards\.com\//
- // @version 0.1
- // @grant none
- // @run-at document-end
- // @inject-into content
- // ==/UserScript==
- "use strict"
- const x=document.createElement("div")
- x.setAttribute("onclick",`"use strict"
- document.body.appendChild=new Proxy(document.body.appendChild,{
- apply:(targ,tthis,args)=>{
- if(args.length&&args[0] instanceof HTMLScriptElement&&"/vglnk.js"===args[0].src.slice(-9))throw "nope"
- return targ.apply(tthis,args)
- }
- })`)
- x.click()