globalSpeed icon indicating copy to clipboard operation
globalSpeed copied to clipboard

有没有办法设置下一集的快捷键?

Open tudouyaer opened this issue 2 years ago • 4 comments

tudouyaer avatar Mar 21 '23 10:03 tudouyaer

You can create a javascript hotkey to trigger the next episode icon/button, but each website is different. Which websites you need it for? If the website doesn't require an account, I can help out.

polywock avatar Mar 21 '23 21:03 polywock

需要账户,https://www.iqiyi.com/ https://v.qq.com/ 这两个网站需要,看您能不能帮帮我。

tudouyaer avatar Mar 22 '23 08:03 tudouyaer

Once you create a javascript hotkey in Global Speed's option page. Set the javascript to the code below.

(() => {
    if (document.location.host === 'www.iqiyi.com') {
        document.querySelector("iqpdiv.iqp-btn.iqp-btn-next")?.click()
    } else if (document.location.host === 'v.qq.com') {
        document.querySelector("div.txp_btn.txp_btn_next_u")?.click()
        
    }
})()

polywock avatar Mar 23 '23 08:03 polywock

举一反三,我成功获取其他网站的下一集代码了,https://www.youku.com/这个网站我找不到代码,大哥能帮帮我吗?

tudouyaer avatar Feb 26 '24 13:02 tudouyaer