LDR pocket 元記事を誤タップ回避で読む bookmarklet

  • /*
     * @title LDR pocket 元記事を誤タップ回避で読む bookmarklet
     * @description
     * @include http://pocket.livedwango.com/*
     * @license MIT License
     * @javascript_url 
     */
    
    var a = document.querySelectorAll('a.button');
    for (var i = 0; i < a.length; i++) {
      if (a[i].firstChild.nodeValue == '元記事を読む') {
        void (location.href = a[i].href);
      }
    }
    
    /*
    #
    # コピペメール送信用
    #
    
    javascript:var a=document.querySelectorAll('a.button');for(var i=0;i<a.length; i++){ if(a[i].firstChild.nodeValue=="元記事を読む"){void(location.href=a[i].href);}}
    
    #
    #
    # */
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2015/06/26 19:07:13 - 2015-06-26