您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
免验证无视退稿直接观看
当前为
// ==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); } } )();