Greasy Fork is available in English.
不要新页面(标签)打开
// ==UserScript==
// @name 不要新标签打开
// @namespace http://tampermonkey.net/
// @version 0.1.6
// @description 不要新页面(标签)打开
// @author imgreasy
// @match https://ourbits.club/*
// @require https://code.jquery.com/jquery-latest.js
// @icon https://ourbits.club/favicon.ico
// @grant none
// @license MIT
// @supportURL http://greasyfork.icu/zh-CN/scripts/457590
// @homepageURL http://greasyfork.icu/zh-CN/scripts/457590
// ==/UserScript==
(function() {
'use strict';
$(function(){
switch(window.location.host) {
case "ourbits.club":
$("#info_block .nowrap>a").attr("target", "_self");
break;
default:
console.log("no match.");
break;
}
});
})();