不要新标签打开

不要新页面(标签)打开

目前為 2023-01-04 提交的版本,檢視 最新版本

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

    });
})();