您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This script allows you to Skip the play button when browsing to RaiPlay.it LIVE.
// ==UserScript== // @name Skip the play button when browsing to RaiPlay.it LIVE // @name:it Salta il tasto play per RaiPlay.it diretti // @namespace https://github.com/GavinBrelstaff // @description This script allows you to Skip the play button when browsing to RaiPlay.it LIVE. // @description:it Ti permette di saltare il tasto play per RaiPlay.it diretti // @match https://www.raiplay.it/dirette/* // @version 1.0 // @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html // ==/UserScript== window.sel="html > body.rai-logged > main > section > rai-live-item.leaf__live > div.grid-container div.cell > a > div.cell > div.play-over-video.button" //console.log('starting: ' + window.sel ); window.pid1 = setInterval(function() // Polling { var el = document.querySelector( window.sel ); if( el ) { console.log('********* found ' + window.sel ); el.click(); clearInterval( window.pid1 ); } }, 250);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址