钢琴吧当前页面打开

将钢琴吧下的所有页面的链接设置为当前页面打开,而不是新增一个标签页

// ==UserScript==
// @name         钢琴吧当前页面打开
// @namespace    http://tampermonkey.net/
// @version      1.0.1
// @description  将钢琴吧下的所有页面的链接设置为当前页面打开,而不是新增一个标签页
// @author       yehuda
// @icon         http://www.tan8.com/static/tan8/style/img/[email protected]
// @match        http://www.tan8.com/*
// @match      *://http://www.tan8.com/*
// @license MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var links = document.getElementsByTagName('a');
    for (var i = 0; i < links.length; i++) {
        links[i].removeAttribute('target');
    }
    document.addEventListener('click', function(event) {
        var target = event.target;
        if (target.tagName.toLowerCase() === 'a' && target.getAttribute('href')) {
            event.preventDefault();
            location.href = target.getAttribute('href');
        }
    });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址