ixEdit

    
      
  • /*
     * @title bookmarklet
     * @description my bookmarklet
     * @include http://*
     * @license MIT License
     * @require 
     */
    
    var s = document.createElement('link');
    s.setAttribute('href','http://perchouli.github.com/ixedit/stylesheets/ixedit.css');
    s.setAttribute('rel','stylesheet');
    s.setAttribute('type','text/css');document.getElementsByTagName('head')[0].appendChild(s);
    
    s = document.createElement("script");
    s.type = "text/javascript";
    s.src = "http://code.jquery.com/jquery.min.js";
    document.getElementsByTagName('body')[0].appendChild(s);
    
    s = document.createElement("script");
    s.type = "text/javascript";
    s.src = "http://code.jquery.com/ui/jquery-ui-git.js";
    document.getElementsByTagName('body')[0].appendChild(s);
    
    s = document.createElement("script");
    s.type = "text/javascript";
    s.src = "http://rawgithub.com/perchouli/ixedit/master/ixedit.js";
    document.getElementsByTagName('body')[0].appendChild(s);
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2013/10/09 17:30:09 - 2013-10-09
  2. 2013/10/09 17:28:49 - 2013-10-09
  3. 2013/10/09 17:27:34 - 2013-10-09
  4. 2013/10/09 17:27:00 - 2013-10-09