您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
The (WORKING) Rickroll blocker Shout out to whatismyname for the code I just edited it so that it blocks the rickroll'd link instead
// ==UserScript== // @name Rickblock (WORKING VERSION) // @include * // @description The (WORKING) Rickroll blocker Shout out to whatismyname for the code I just edited it so that it blocks the rickroll'd link instead // @run-at document-end // @version 1.1 // @namespace // @grant none // ==/UserScript== var links = document.getElementsByTagName("a"); for (var i = 0; i < links.length; i++) { var linkto = links[i].getAttribute("href"); var isrickroll = false; if (linkto) var isrickroll = (linkto.indexOf("oHg5SJYRHA0") !== -1); if (isrickroll) { links[i].innerHTML = "(They tried to rickroll you)"; links[i].setAttribute("href", "#"); } }