Hatena Bookmark Link Modifier

はてなブックマークの下部の記事の見出しリンク先が、記事ではなくブクマページになってしまっているのを修正します。

目前为 2020-06-27 提交的版本。查看 最新版本

// ==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;
  }
})();

QingJ © 2025

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