Netflix Rewind 1 sec
Seek through video with an x amount of seconds (adjustable)
什么是Netflix Rewind 1 sec?
Netflix Rewind 1 sec是由Laurens开发的Chrome扩展程序,该扩展的主要功能是“Seek through video with an x amount of seconds (adjustable)”。
扩展截图
下载Netflix Rewind 1 sec扩展crx文件
下载Netflix Rewind 1 sec扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Allows you to ↺ rewind the videoplayer on netflix.com by 1 second (instead of the default 10 seconds) each time you press the [<] or [,] key.
The amount of seconds to seek can be adjusted via the 🛠️ Options page. 扩展基本信息
| 名称 | |
| ID | inpbafoldolmpeiebppjbckdpnkkhlej |
| 官方URL | https://chromewebstore.google.com/detail/netflix-rewind-1-sec/inpbafoldolmpeiebppjbckdpnkkhlej |
| 简介 | Seek through video with an x amount of seconds (adjustable) |
| 文件大小 | 32.6 KB |
| 安装次数 | 809 |
| 当前版本 | 4.0.1 |
| 更新时间 | 2024-01-03 |
| 上架时间 | 2023-03-17 |
| 评分 | 4.50/5 共10次评分 |
| 开发者 | Laurens |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/laurens94/netflix-rewind-browser-extension |
| 帮助页面URL | https://github.com/laurens94/netflix-rewind-browser-extension/issues |
| 支持的语言 | en,nl,ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_extensionName__",
"version": "4.0.1",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"icons": {
"48": "icons\/128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.netflix.com\/*"
],
"js": [
"browser-polyfill.min.js",
"contentscript.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"netflix-rewind-1-sec.js"
],
"matches": [
"*:\/\/www.netflix.com\/*"
]
}
],
"permissions": [
"storage"
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"browser_specific_settings": {
"gecko": {
"id": "{8e51a86a-e712-4386-a231-a9c3d06f3348}",
"strict_min_version": "109.0"
}
}
} | |