HatenaBookmark: timestamp -> permalink

  • /*
     * @title HatenaBookmark: timestamp -> permalink
     * @description 各ブックマークのtimestampをブックマークのパーマリンクにする
     * @include http://b.hatena.ne.jp/entry/*
     * @license CC0
     */
    
    // See also: "はてブエントリーページのコメントパーマリンク" - Userscripts.org
    // https://userscripts.org/scripts/show/157164
    
    var style = document.createElement("style");
    style.textContent = ".bookmark-list .timestamp {text-decoration: none;}";
    document.head.appendChild(style);
    
    Array.prototype.forEach.call(document.querySelectorAll('.bookmark-list [id^="bookmark-user-"]'), function(bookmark){
        var oldTimestamp = bookmark.querySelector(".timestamp");
        var newTimestamp = document.createElement("a");
        newTimestamp.setAttribute("class", "timestamp");
        newTimestamp.href = bookmark.querySelector(".username").href;
        newTimestamp.textContent = oldTimestamp.textContent;
    
        oldTimestamp.parentNode.replaceChild(newTimestamp, oldTimestamp);
    });
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2014/03/06 20:58:26 - 2014-03-06