AndroidAppLink

  • /*
     * @title AndroidAppLink
     * @description Androidアプリを紹介するためのブックマークレットです。
     * @include https://market.android.com
     * @include http://market.android.com
     * @license MIT License
     * @require jquery
     */
    (function(){
    	
    	var url = document.location.href;
    	if(url.search(/details/) != -1)
    	{
    		
    		//アプリ名
    		var appname =  $(".document-title").html();
    		var appname = appname.replace(/<.+?>/g,"");
    
    		//アイコンURL
    		var icon = $(".cover-container img").attr("src");
    
    		//値段
    		var price = $("meta[itemprop=price]").attr("content");
    
    		if(price==0){
    			var price="無料"
    		}
    
    		//出力用文字列整形
    		var str = "<div style='overflow:hidden;margin-bottom:20px;padding-bottom:20px;border-bottom:#ccc 1px dotted;'><div style='float:left;margin: 0 20px 10px 30px;width:75px;height:75px;'><a href=" + url + " target='_blank' rel='nofollow'><img width='75' height='75' src=" + icon + "></a></div><div style='margin: 0px;'><span style='border-bottom: #000 dotted 1px;'><a href=" + url + " target='_blank' rel='nofollow' style='font-size:16px;font-weight:bold;color: #000;'>" + appname +"</a></span></div><div style='font-size:14px;margin-top: 5px;margin-bottom: 5px'>" + "価格:" + price+ "</div><p style='clear: both;margin:0;padding:0;'><a href=" + url + " target='google_play' style='display:inline-block;overflow:hidden;background:url(http://developer.android.com/images/brand/ja_app_rgb_wo_45.png) no-repeat;width:135px;height:45px;'></a></p></div>";
    
    		window.prompt("HTMLをコピーして貼り付けて下さい",str);
    	}
    	
    })();
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2014/10/28 13:44:02 - 2014-10-28
  2. 2014/10/28 13:37:36 - 2014-10-28
  3. 2014/10/28 13:29:39 - 2014-10-28
  4. 2014/10/17 10:49:54 - 2014-10-17
  5. 2014/10/16 20:53:55 - 2014-10-16