/*
* @title google play link
* @description Google Playアプリのリンクを作成します。
* @include http://play.google.com/
* @license MIT License
* @require jquery
*/
(function(){
var url = document.location.href;
if(url.search(/details/) != -1)
{
//パッケージ名取得
url.match(/market\.android\.com\/details\?id=([a-zA-Z0-9_\-\.!~\*\|]+)/);
var pname = RegExp.$1;
//アプリ名
var appname = $(".doc-banner-title-container h1").html();
//概要(未使用)
var description = $(".doc-overview .doc-description").html();
//値段(未使用)
var price = $("a.buy-link[data-docid=" + pname + "]").attr("data-docprice");
//アイコンURL
var icon = $(".doc-banner-icon img").attr("src");
//QRコードURL(未使用)
var qrcode = "http://chart.apis.google.com/chart?chs=75x75&cht=qr&chld=l0&chl=market://details?id=" + pname;
//出力用文字列整形
var str = "<li><a href=\"" + url + "\" rel=\"external\"><img src=\"" + icon + "\">"
+ "<h3>" + appname + "</h3>"
+ "<p>説明</p>"
+ "</a></li>";
alert(str);
}
})();