资源网链接跳转

OK资源网,最大资源网[kuyun] [m3u8]页面链接点击直接跳转.

As of 2017-09-14. See the latest version.

// ==UserScript==
// @name         资源网链接跳转
// @namespace    https://greasyfork.org/zh-CN/users/104201
// @version      0.1
// @description  OK资源网,最大资源网[kuyun] [m3u8]页面链接点击直接跳转.
// @author       黄盐
// @match        http://www.okokzy.com/?m=vod-detail*
// @match        http://www.zuidazy.com/?m=vod-detail*
// @grant        none
// run-at        document-end
// ==/UserScript==

(function() {
    'use strict';

    var lis=document.querySelectorAll("div.vodplayinfo li");//文档中0~end 是链接项目,渲染结束后是6~end是链接项目
    var tmp;
    for(var i in lis){
        console.log(lis[i]);
        tmp=lis[i].innerText;
        lis[i].innerHTML=lis[i].childNodes[0].outerHTML+'<a target="_blank" href="'+tmp.slice(tmp.indexOf("http"))+'">'+tmp+'</a>';
    }
})();