YouTube Subtitle Delay
Mini tool to delay the YouTube subtitles
什么是YouTube Subtitle Delay?
YouTube Subtitle Delay是由Behnam Azimi开发的Chrome扩展程序,该扩展的主要功能是“Mini tool to delay the YouTube subtitles”。
扩展截图
下载YouTube Subtitle Delay扩展crx文件
下载YouTube Subtitle Delay扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Mini tool to delay subtitles on the YouTube official website. As you may know, YouTube doesn't have this functionality by default, and sometimes being able to delay subtitle streaming can be of great help, especially when you're trying to learn a new language. And this extension would help you to do so. By default, you can change the delay time by "A" and "D" keyboard shortcuts. It's also possible to adjust your shortcuts. This extension is only allowed to execute on the Youtube official website and I hope they add the subtitle delay options soon and make this extension useless :)
扩展基本信息
名称 | |
ID | fegfigommgpglnlpdmgncojmkghbijkc |
官方URL | https://chromewebstore.google.com/detail/youtube-subtitle-delay/fegfigommgpglnlpdmgncojmkghbijkc |
简介 | Mini tool to delay the YouTube subtitles |
文件大小 | 38.87 KB |
安装次数 | 1,051 |
当前版本 | 1.7 |
更新时间 | 2023-12-27 |
上架时间 | 2022-06-28 |
评分 | 4.00/5 共8次评分 |
开发者 | Behnam Azimi |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/behnamazimi/youtube-subtitle-delay |
帮助页面URL | https://github.com/behnamazimi/youtube-subtitle-delay/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Subtitle Delay", "version": "1.7", "description": "Mini tool to delay the YouTube subtitles", "permissions": [ "storage" ], "host_permissions": [ "https:\/\/youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup\/popup.html", "default_icon": { "16": "icons\/16x16.png", "32": "icons\/32x32.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" } }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "shared\/constant.js", "shared\/utils.js", "content\/index.js" ], "css": [ "shared\/styles.css" ] } ], "icons": { "16": "icons\/16x16.png", "32": "icons\/32x32.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" }, "manifest_version": 3 } |