Greasy Fork is available in English.

百度网盘破解SVIP&&倍速播放&&文稿字幕

百度网盘视频完全破解SVIP。电脑用户使用新版火狐或安插件设置UserAgent:Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:110.0) Gecko/20100101 Firefox/110.0。iPad用户(我iOS15.7):安装Focus浏览器,安装插件,登录即为Svip。

< Feedback on 百度网盘破解SVIP&&倍速播放&&文稿字幕

Question/comment

§
Posted: 05.09.2023

希望作者加入字幕区鼠标功能:代码如下,已经测试(可以自动开启字幕,并监听字幕,一旦生成字幕就去除鼠标限制)
setTimeout(() => {
subtitleBtn.click();

(function() {
'use strict';

// 创建一个 MutationObserver 实例
const observer = new MutationObserver(function(mutationsList) {
for (let mutation of mutationsList) {
// 检查是否有新添加的 ai-draft__wrap-list 子元素
if (mutation.type === 'childList' && mutation.addedNodes.length > 0) {
mutation.addedNodes.forEach(function(addedNode) {
// 获取 ai-draft__wrap-list 元素
var parentElement = document.querySelector('.ai-draft__wrap-list');
parentElement.contentEditable = true;


});
}
}
});

// 在整个文档上启动 MutationObserver
observer.observe(document.documentElement, { childList: true, subtree: true });
})();
}, 1000);

Post reply

Sign in to post a reply.