使得番剧页面最新更新栏的所有链接都在同一个新标签页打开,使用target属性。
// ==UserScript== // @name B站番剧页面优化 // @namespace no1xsyzy // @description 使得番剧页面最新更新栏的所有链接都在同一个新标签页打开,使用target属性。 // @include http://www.bilibili.com/video/bangumi.html // @version 1.2 // @grant none // ==/UserScript== var t=0; function postgot() { x = $('div.bgmbox a'); for (i = 0; i < x.length; i++) { x[i].target = 'bangumipage'; } GM_deleteValue("BBPE_looptime"); } function loopget() { x = $('div.bgmbox>div.b-toggle-block'); if (x.length > 0) postgot(); else if (t<1000) setTimeout(loopget,100); t++; } if($('div.bgmbox').length==1)loopget();