Vectorのページにダウンロードボタンを追加する
当前为
// ==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);
})();