最近学英语,跟着油管主播一起读,字幕跳转 很麻烦,所以开发了这个插件
https://github.com/fqdeng/youtube-subtitles-panel/tree/master
1
logic2 OP 基本上是抄袭的 openai 的代码,只要描述一下, 对各种 API 的理解程度确实很高
|
2
YY 105 天前
TamperMonkey 安装了,打开上面这个视频 没有自动跳出字幕 div, chrome 浏览器。不知道什么问题
|
6
logic2 OP @YY 破案了,把 jquery 3.7.1 拉了下来,把所有 innerHTML = 的地方 都用
policy.createHTML() 就搞定了 if (window.trustedTypes && trustedTypes.createPolicy) { const policy = trustedTypes.createPolicy("default", { createHTML: (string) => string }); document.getElementById("yourElementId").innerHTML = policy.createHTML("<p>Safe content</p>"); } else { document.getElementById("yourElementId").innerHTML = "<p>Safe content</p>"; } |
7
logic2 OP |
10
humbass 92 天前
字幕用上了,谢谢!!!
|