Greasemonkey脚本重写链接



我需要Greasemonkey脚本来查找所有链接,如:

http://legendas.tv/download/545832dfb67eb/American_Dad/American_Dad_S11E02_HDTV_x264_LOL_AFG_FUM_DIMENSION

并像这样重写:

http://legendas.tv/downloadarquivo/545832dfb67eb

这是我的剧本,但不起作用。

// ==UserScript==
// @name        LTV
// @namespace   legendas.tv
// @include     http://legendas.tv
// @version     1
// @grant       none
// ==/UserScript==
var links = document.getElementsByTagName("*"); //array
var regex = /^(http://)(legendas.tv/download/)(.{13})(.*)$/i;
for (var i=0,imax=links.length; i<imax; i++) {
   links[i].href = links[i].href.replace(regex,"$1.legendas.tv/downloadarquivo/$3/");
}

您应该考虑使用jQuery。

// @include     http://*legendas.tv/
// @require     https://code.jquery.com/jquery-2.1.1.min.js
// @require     https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant       GM_addStyle
// ==/UserScript==
//wait it load
waitForKeyElements (".film", dlink);
//change headers links
$(".item a").each ( function () {
    var jThis = $(this);
    var href  = jThis.prop("href");
    var re = /[w]+[d]+/;
    var code = href.match(re)[0];
    var nLink = "/downloadarquivo/" + code;
    jThis.prop( "href", nLink );
});
//change download buttons links
function dlink() {
    $(".bt_seta_download a").each ( function () {
        var jThis = $(this);
        var href  = jThis.prop("href");
        var re = /[w]+[d]+/;
        var code = href.match(re)[0];
        var nLink = "/downloadarquivo/" + code;
        jThis.prop( "href", nLink );
    } );
}    

页面的某些元素是在页面加载后加载的,因此您必须检查它是否在那里可以使用它们。如果你愿意,你可以用waitForKeyElements触发你的代码,但我没有测试它。

一切看起来都很好。
一些需要注意的事项:

^$与href匹配吗?

解析双引号不会从/ 中删除转义符

"$1.legendas.tv/downloadarquivo/$3"

更改为->

"$1.legendas.tv/downloadarquivo/$3"

相关内容

  • 没有找到相关文章

最新更新