B! Scouter

    @@ -4,6 +4,7 @@ * @include http://* * @license MIT License * @require + * @javascript_url */
  • /*
     * @title B! Scouter
     * @description すべての <a> の隣にブックマーク数を表示する
     * @include http://*
     * @license MIT License
     * @require 
     * @javascript_url
     */
    
    
    (() => {
    
    function createBukumaAnchor(url) {
      const a = document.createElement('a');
      a.href = `https://b.hatena.ne.jp/entry/${encodeURI(url)}`;
      const img = document.createElement('img');
      img.src = `https://b.hatena.ne.jp/entry/image/${encodeURI(url)}`;
      a.append(img);
      return a;  
    }
    
    document.querySelectorAll('a').forEach((a) => {
      a.insertAdjacentElement('afterend', createBukumaAnchor(a.href));
    });
    
    })();
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。