Greasy Fork is available in English.

VectorDirectDL

Vectorのページにダウンロードボタンを追加する

目前為 2015-02-16 提交的版本,檢視 最新版本

// ==UserScript==
// @name        VectorDirectDL
// @description Vectorのページにダウンロードボタンを追加する
// @namespace   phodra
// @include     http://www.vector.co.jp/soft/*
// @version 1
// ==/UserScript==
(function (){
	var _h1= document.getElementsByTagName("h1")[0];
	var meta = document.evaluate(
		"//meta[@name='download']", document, null,
		XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
	var str = document.createElement("a");
	
	if( meta.snapshotItem(0)!=null ){
		str.href = meta.snapshotItem(0).content;
		str.innerHTML = "<br>Download It!";
	}else{
		var dl = document.evaluate(
			"//a[@class='download']", document, null,
			XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
		str.href = dl.snapshotItem(0).getAttribute("href");
		str.innerHTML = "<br>Select DL File";
	}
	_h1.insertBefore(str, null);
})();