您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes earrape intro from KimCartůn.
// ==UserScript== // @name KimCartoonAntiEarrape // @namespace KimCartoonBoiz // @description Removes earrape intro from KimCartůn. // @description:en Removes earrape intro from KimCartůn. // @author TitoDick69XLoliFan420Fakfest // @include http://kimcartoon.*/* // @include https://kimcartoon.*/* // @include http://www.kimcartoon.*/* // @include http://www.kimcartoon.*/* // @include http://rapidvideo.*/* // @include https://rapidvideo.*/* // @include http://www.rapidvideo*/* // @include https://www.rapidvideo.*/* // @version 0.69m9 // @grant none // ==/UserScript== var myelementz = []; var thresh=6; setInterval(function(){ ProcezzVideoz(document); },350); function ProcezzVideoz(docme) { var lizt = document.getElementsByTagName("video"); for (i = 0; i < lizt.length; i++) { if(lizt[i].currentTime<thresh) { lizt[i].currentTime=thresh; } if(myelementz.indexOf(lizt[i].getAttribute("src"))<0) { myelementz.push(lizt[i].getAttribute("src")); lizt[i].addEventListener('loadedmetadata', function() { if(this.playing) { this.currentTime = thresh; } }, false); } } }