Netflix Shortcuts
Custom shortcuts for Netflix
Wat is Netflix Shortcuts?
Netflix Shortcuts is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Custom shortcuts for Netflix".
Extensie Screenshots
Download het CRX-bestand van de extensie Netflix Shortcuts
Download Netflix Shortcuts-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
This extension allows you to control Netflix using only your keyboard, no more mouse needed.
It currently supports:
- "Skip Intro" (hit the "s" key)
- "Next Episode" (hit the "n" key).
More coming soon... Basisinformatie over de Extensie
| Naam | |
| ID | pplbkfmlmhipnhgjbdmlpkicnbkalhdp |
| Officiële URL | https://chromewebstore.google.com/detail/netflix-shortcuts/pplbkfmlmhipnhgjbdmlpkicnbkalhdp |
| Beschrijving | Custom shortcuts for Netflix |
| Bestandsgrootte | 6.79 KB |
| Aantal Installaties | 246 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2018-10-06 |
| Publicatiedatum | 2018-10-06 |
| Beoordeling | 1.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | Unknown |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/foxou33/netflix-shortcuts |
| Help Pagina-URL | https://github.com/foxou33/netflix-shortcuts/issues |
| Ondersteunde Talen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Netflix Shortcuts",
"version": "1.0",
"manifest_version": 2,
"description": "Custom shortcuts for Netflix",
"icons": {
"64": "img\/icon_grey.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/www.netflix.com\/watch\/*"
],
"js": [
"content.js"
]
}
],
"page_action": {
"default_icon": "img\/icon_red.png"
},
"permissions": [
"declarativeContent"
]
} | |