Netflix Rewind 1 sec
Seek through video with an x amount of seconds (adjustable)
What is Netflix Rewind 1 sec?
Netflix Rewind 1 sec is a Chrome extension developed by Laurens, and its main feature is "Seek through video with an x amount of seconds (adjustable)".
Extension Screenshots
Download Netflix Rewind 1 sec Extension CRX File
Download Netflix Rewind 1 sec extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Netflix Rewind 1 sec |
ID | inpbafoldolmpeiebppjbckdpnkkhlej |
Official URL | https://chromewebstore.google.com/detail/netflix-rewind-1-sec/inpbafoldolmpeiebppjbckdpnkkhlej |
Description | Seek through video with an x amount of seconds (adjustable) |
File Size | 32.6 KB |
Installation Count | 809 |
Current Version | 4.0.1 |
Last Updated | 2024-01-03 |
Publish Date | 2023-03-17 |
Rating | 4.50/5 Total 10 Ratings |
Developer | Laurens |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/laurens94/netflix-rewind-browser-extension |
Help Page URL | https://github.com/laurens94/netflix-rewind-browser-extension/issues |
Supported Languages | 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" } } } |