Netflix Navigator
Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.
Wat is Netflix Navigator?
Netflix Navigator is een Chrome-extensie ontwikkeld door dutiyesh, en de belangrijkste functie is "Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.".
Extensie Screenshots
Download het CRX-bestand van de extensie Netflix Navigator
Download Netflix Navigator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Netflix Navigator |
ID | kiikkoajobekfkpgaojoincnfombbaco |
Officiële URL | https://chromewebstore.google.com/detail/netflix-navigator/kiikkoajobekfkpgaojoincnfombbaco |
Beschrijving | Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys. |
Bestandsgrootte | 37.95 KB |
Aantal Installaties | 216 |
Huidige Versie | 0.3.0 |
Laatst Bijgewerkt | 2022-12-04 |
Publicatiedatum | 2020-11-08 |
Beoordeling | 5.00/5 Totaal 5 Beoordelingen |
Ontwikkelaar | dutiyesh |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.netflixnavigator.com/ |
URL van de Privacybeleid Pagina | https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md |
Ondersteunde Talen | 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" ] } ] } |