from iTunes app store to web store

Redirect iTunes app store to web store

// ==UserScript==
// @name           from iTunes app store to web store
// @namespace      http://efcl.info/
// @description    Redirect iTunes app store to web store
// @include        http://itunes.apple.com/WebObjects/*
// @version 0.0.1.20140518104305
// ==/UserScript==
(function(){
	var URL = location.href;
	var urls_def = /itms%253A%252F%252Fitunes\.apple\.com.*?id%253D(\d+)/i;
	var m = (URL.match(urls_def)||[])[1];
	if(m){
		location.href = "http://app-store.appspot.com/?url=viewSoftware?id=" + m;
	}else{
	  return
	}
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址