Netflix Navigator
Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.
Hvad er Netflix Navigator?
Netflix Navigator er en Chrome-udvidelse udviklet af dutiyesh, og dens hovedfunktion er "Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.".
Udvidelsesskærmbilleder
Download Netflix Navigator-udvidelses-CRX-fil
Download Netflix Navigator-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | kiikkoajobekfkpgaojoincnfombbaco |
| Officiel URL | https://chromewebstore.google.com/detail/netflix-navigator/kiikkoajobekfkpgaojoincnfombbaco |
| Beskrivelse | Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys. |
| Filstørrelse | 37.95 KB |
| Antal Installationer | 216 |
| Nuværende Version | 0.3.0 |
| Senest Opdateret | 2022-12-04 |
| Udgivelsesdato | 2020-11-08 |
| Bedømmelse | 5.00/5 Samlet 5 Bedømmelser |
| Udvikler | dutiyesh |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://www.netflixnavigator.com/ |
| URL til Fortrolighedspolitik Side | https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md |
| Understøttede Sprog | 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"
]
}
]
} | |