B! Scouter

    @@ -7,7 +7,7 @@ */ -() => { +(() => { function createBukumaAnchor(url) { const a = document.createElement('a'); @@ -22,4 +22,4 @@ a.insertAdjacentElement('afterend', createBukumaAnchor(a.href)); }); -}(); +})();
  • /*
     * @title bookmarklet
     * @description my bookmarklet
     * @include http://*
     * @license MIT License
     * @require 
     */
    
    
    (() => {
    
    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 です。

History

  1. 2024/10/10 18:26:33 - 2024-10-10
  2. 2024/10/10 18:23:04 - 2024-10-10
  3. 2024/10/10 18:19:48 - 2024-10-10
  4. 2024/10/10 18:19:17 - 2024-10-10
  5. 2024/10/10 18:17:28 - 2024-10-10
  6. 2024/10/10 18:16:56 - 2024-10-10
  7. 2024/10/10 18:15:37 - 2024-10-10
  8. 2024/10/10 18:14:36 - 2024-10-10