吐槽补丁

免验证无视退稿直接观看

当前为 2017-04-05 提交的版本,查看 最新版本

// ==UserScript==
// @name         吐槽补丁
// @description  免验证无视退稿直接观看
// @icon         http://www.tucao.tv/favicon.ico
// @author       sjmr
// @match        *://www.tucao.tv/*
// @run-at       document-body
// @version      1
// @grant        none
// @namespace https://greasyfork.org/users/23790
// ==/UserScript==
(
    function ()
    {
        if (document.cookie.indexOf('tucao_verify') === -1) document.cookie ='tucao_verify=ok;path=/;max-age=31536000;';
		url = window.location.href.toString();
		if (url.search(/check\.php\?url=/gi) != -1){
		  url = url.split('url=');
		  window.location.href = atob(url[1]);
		}

        if(document.querySelector("#play_ren") && document.querySelector("#video_part")===null){
           var html='<div id="video_part"></div><div class="clear"></div>\n<div id="player"></div>';
           document.body.innerHTML=document.body.innerHTML.replace(/<div.*?404.*?<\/div>/g, html);
        }
    }
)();