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 |
| 官方網址 | 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"
}
}
} | |