// ==UserScript== // @name bilibili超链接不新开标签页直接在当前页面打开 // @namespace EtfB2XVPmbThEv39bdxQR2hzid30iMF9 // @version 0.1 // @description bilibili超链接不新开标签页直接在当前页面打开。 // @author tomoya // @include http*://*bilibili.com/* // @grant none // @downloadURL none // ==/UserScript== (function () { 'use strict'; setInterval(function() { let aEles = document.getElementsByTagName("a"); for(let i = 0; i < aEles.length; i++) { aEles[i].removeAttribute("target"); } }, 200); })();