吐槽补丁

免验证无视退稿绮罗星

目前为 2017-04-13 提交的版本。查看 最新版本

// ==UserScript==
// @name         吐槽补丁
// @description  免验证无视退稿绮罗星
// @icon         http://www.tucao.tv/favicon.ico
// @author       Sjmr
// @match        http://www.tucao.tv/*
// @version      1.07
// @run-at       document-start
// @namespace    https://gf.qytechs.cn/users/23790
// ==/UserScript==

document.addEventListener("DOMContentLoaded", function (){

	'use strict';
	var css = '#Menu{z-index:99999; position:absolute; left:0px; top:0px; width:120px; height:auto; border:0; margin:0;}'+
              '#Biliplus{position:fixed; left:-96px; top:155px; width:80px; height:30px; background-color:#3388FF; border:3px solid #D8033E; margin:0; padding:3px;}'+
			  '#Biliplus a{font-size:16px; margin:0; padding:3px; color:white; line-height: 30px} '+
              '#Btn{position:fixed; left:0; top:155px; width:14px; height:30px; background-color:#D8033E; border:3px solid #D8033E; margin:0; padding:3px;}'+
			  '#Btn span{cursor:pointer; font-size:16px; margin:0; padding:3px; color:white; line-height: 30px}';

	function clickit(){
		var btn = document.getElementById("Btn");
		var bp = document.getElementById("Biliplus");
		var tt = document.getElementById("Text");
		if(btn.style.left===""||parseInt(btn.style.left)<10){btn.style.left=80+"px"; bp.style.left=0; tt.innerText="◀";}
		else{btn.style.left=0; bp.style.left=-80+"px"; tt.innerText="▶";}
	}

	if (document.cookie.indexOf('tucao_verify') === -1) document.cookie ='tucao_verify=ok;path=/;max-age=31536000;';

	var url = window.location.href.toString();

	if (url.search(/check\.php\?url=/gi) != -1){
		url = url.split('url=');
		window.location.href = atob(url[1]);
		return;
	}

    if(document.querySelector("#play_ren")){

		var oldDiv = document.querySelector('div[style^="height: 172px;overflow: hidden"]');
		if (oldDiv) oldDiv.outerHTML='<div id="video_part"></div><div class="clear"></div><div id="player"></div>';

		var id = url.match(/[0-9]{7}/gi);
		var div = document.createElement('div');
		div.innerHTML = '<div id="Menu"><div id="Biliplus"><a href="https://www.biliplus.com/play/h'+ id +
		'/" title="浏览 Bili+ 对应页面" target="_blank">BiliPlus</a></div><div id="Btn"><span id="Text">▶</span></div></div>';
		document.body.appendChild(div);
		document.querySelector("#Btn").addEventListener("click",clickit,false);

		var script = document.createElement('script');
		script.type = 'text/javascript';
		script.src = 'http://www.tucao.tv/skin2013/player.js';
		document.body.appendChild(script);

		var style = document.createElement('style');
		style.innerHTML = css;
		document.head.appendChild(style);
	}


});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址