// ==UserScript== // @name 不要新标签打开 // @namespace http://tampermonkey.net/ // @version 0.1.5 // @description 不要新页面(标签)打开 // @author imgreasy // @match https://ourbits.club/* // @require https://code.jquery.com/jquery-latest.js // @grant none // @license MIT // @supportURL https://greasyfork.org/zh-CN/scripts/457590 // @homepageURL https://greasyfork.org/zh-CN/scripts/457590 // @downloadURL none // ==/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; } }); })();