!link

    
      
  • /*
     * @title link2txt
     * @description disable links
     * @include http://*
     * @include https://*
     * @license MIT License http://nrm.mit-license.org/2013
     * @require 
     */
    
    (function () {
        Array.prototype.slice.call(document.querySelectorAll('a[href]')).
        forEach(function (anchor) {
            anchor.style.cursor = 'text';
            anchor.removeAttribute('href');
        });
    })();
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2013/01/28 14:25:42 - 2013-01-28
  2. 2013/01/28 14:12:13 - 2013-01-28
  3. 2013/01/28 12:50:00 - 2013-01-28
  4. 2013/01/28 11:58:33 - 2013-01-28
  5. 2013/01/27 09:03:28 - 2013-01-27