吐槽补丁

免验证无视退稿绮罗星

目前為 2017-07-13 提交的版本,檢視 最新版本

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

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

	'use strict';
	function Link(){
		var b = document.getElementById('Button');
		var l = document.getElementById('Link');
		var t = document.getElementById('Text');
		if (!parseInt(b.style.left)){b.style.left = '80px'; l.style.left = '0px'; t.innerText = '◀';}
		else{b.style.left = '0px'; l.style.left = '-80px'; t.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=/i) != -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(/(?:[?&]id=|play\/h)([0-9]{7,})/i)[1];
		var div = document.createElement('div');
		div.innerHTML = '<div id="Layer"><div id="Link"><a href="https://www.biliplus.com/play/h'+ id + '/" ' +
			'title="点击访问 B+ 对应页面" target="_blank">BiliPlus</a></div><div id="Button"><span id="Text">▶</span></div></div>';
		document.body.appendChild(div);
		document.getElementById('Button').addEventListener('click', Link, false);

		var style = document.createElement('style');
		style.type = 'text/css';
		style.innerHTML = '#Layer{z-index:99999;} #Link a{color:white; margin:auto;} #Button span{cursor:pointer; color:white; margin:auto;}' +
			'#Link{position:fixed; left:-80px; top:155px; width:74px; height:34px; background:#3388FF; border:3px solid #D8033E; display:flex;}' +
			'#Button{position:fixed; left:0; top:155px; width:14px; height:34px; background:#D8033E; border:3px solid #D8033E; display:flex;}';
		document.head.appendChild(style);

		var script = document.createElement('script');
		script.type = 'text/javascript';
		script.src = '/skin2013/player.js';
		document.body.appendChild(script);
	}

});

QingJ © 2025

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