view-source

  • /*
     * @title view-source
     * @description Open the page in the View-source URI scheme for Fx.
     * @include http://localhost/*
     * @license CC0 1.0 Universal
     * @javascript_url
     */
    (function(n,w,l){
      if(n.userAgent.toLowerCase().indexOf("firefox")!=-1 && l.hostname.toLowerCase()==="localhost"){
        w.open("view-source:"+l.href);
      }
    })(navigator,window,location);
    
    
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2014/02/09 19:58:56 - 2014-02-09