diamond.jp redirect to print page

  • /*
     * @title diamond.jp redirect to print page
     * @description print view on diamond.jp
     * @include http://diamond.jp/articles/-/*
     * @contributor taizooo   http://let.hatelabo.jp/taizooo/let/hLHUksb6l-tU (Fork of)
     * @license     Unknown (as-is)
     * @contributor noromanba http://let.hatelabo.jp/noromanba/let/hJmcqt7EtKkq
     * @license     MIT License http://opensource.org/licenses/MIT (patch-part)
     */
    
    (function () {
    	/*
    	if (!/^http:\/\/diamond\.jp\/articles\/\-\/\d+/.test(location.href) ||
    		/^\/articles\/print/.test(location.pathname)) {
    		return;
    	}
    	//*/
    	location.pathname = location.pathname.split('/').
    	map(function (x) {
    		return x.replace(/-/, 'print');
    	}).join('/');
    })();
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2013/09/26 01:52:08 - 2013-09-26
  2. 2013/09/26 01:29:39 - 2013-09-26
  3. 2013/09/26 01:16:45 - 2013-09-26