您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
はてなブックマークの下部の記事の見出しリンク先が、記事ではなくブクマページになってしまっているのを修正します。
当前为
// ==UserScript== // @name Hatena Bookmark Link Modifier // @namespace knoa.jp // @description はてなブックマークの下部の記事の見出しリンク先が、記事ではなくブクマページになってしまっているのを修正します。 // @include https://b.hatena.ne.jp/entry/* // @version 1 // @grant none // ==/UserScript== (function(){ const modify = function(){ let links = document.querySelectorAll('[class$="title"] > a[href^="/entry/"]'); Array.from(links).forEach(link => { link.href = link.href.replace('https://b.hatena.ne.jp/entry/s/', 'https://'); link.href = link.href.replace('https://b.hatena.ne.jp/entry/', 'http://'); }); }; modify(); observe(document.body, function(records){ modify(); }); function observe(element, callback, options = {childList: true, characterData: false, subtree: false, attributes: false, attributeFilter: undefined}){ let observer = new MutationObserver(callback.bind(element)); observer.observe(element, options); return observer; } })();