Netflix Navigator
Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.
What is Netflix Navigator?
Netflix Navigator is a Chrome extension developed by dutiyesh, and its main feature is "Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.".
Extension Screenshots
Download Netflix Navigator Extension CRX File
Download Netflix Navigator 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
Netflix Navigator is a chrome extension for Netflix to make browsing experience easy with keyboard. Features: ★ Navigate with Arrow keys ★ Get more information with Enter key ★ Autoplays Preview after 1 second ★ Search Netflix with S key
Extension Basic Information
Name | Netflix Navigator |
ID | kiikkoajobekfkpgaojoincnfombbaco |
Official URL | https://chromewebstore.google.com/detail/netflix-navigator/kiikkoajobekfkpgaojoincnfombbaco |
Description | Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys. |
File Size | 37.95 KB |
Installation Count | 216 |
Current Version | 0.3.0 |
Last Updated | 2022-12-04 |
Publish Date | 2020-11-08 |
Rating | 5.00/5 Total 5 Ratings |
Developer | dutiyesh |
[email protected] | |
Payment Type | free |
Extension Website | https://www.netflixnavigator.com/ |
Privacy Policy Page URL | https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Netflix Navigator", "version": "0.3.0", "description": "Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_title": "Netflix Navigator", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/*" ], "run_at": "document_end", "js": [ "contentScript.js" ], "css": [ "contentScript.css" ] } ] } |