https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js を読み込む的な……

    @@ -1,18 +1,20 @@ /* - * @title *.jsを読み込む的な…… - * @description requireあるからいらない + * @title https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js を読み込む的な…… + * @description requireあるからいらない...のをGM_regis(ryという形でなんでもない * @include http:* * @license MIT License * @require */ - -(function() { - (function(uri) { - if(!uri){return null;} - e = document.createElement('script'); - e.type = "text/javascript"; - e.src = uri; - document.head.appendChild(e); - })(false); -})(); +GM_registerMenuCommand( + "jQuery", + (function() { + (function(uri) { + if(!uri){return null;} + e = document.createElement('script'); + e.type = "text/javascript"; + e.src = uri; + document.head.appendChild(e); + })("https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"); + }) +);
  • /*
     * @title https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js を読み込む的な……
     * @description requireあるからいらない...のをGM_regis(ryという形でなんでもない
     * @include http:*
     * @license MIT License
     * @require 
     */
    
    GM_registerMenuCommand(
    		"jQuery",
    		(function() {
    			(function(uri) {
    				if(!uri){return null;}
    				e = document.createElement('script');
    				e.type = "text/javascript";
    				e.src = uri;
    				document.head.appendChild(e);
    			})("https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js");
    		})
    );
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2013/04/21 18:42:45 - 2013-04-21
  2. 2013/04/21 18:26:45 - 2013-04-21