Netflix Shortcuts
Custom shortcuts for Netflix
Qu'est-ce que Netflix Shortcuts ?
Netflix Shortcuts est une extension Chrome développée par Unknown, et sa fonction principale est "Custom shortcuts for Netflix".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Netflix Shortcuts
Téléchargez les fichiers d'extension Netflix Shortcuts au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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...
Informations de Base sur l'Extension
Nom | |
ID | pplbkfmlmhipnhgjbdmlpkicnbkalhdp |
URL Officiel | https://chromewebstore.google.com/detail/netflix-shortcuts/pplbkfmlmhipnhgjbdmlpkicnbkalhdp |
Description | Custom shortcuts for Netflix |
Taille du Fichier | 6.79 KB |
Nombre d'Installations | 246 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2018-10-06 |
Date de Publication | 2018-10-06 |
Évaluation | 1.00/5 Total 1 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/foxou33/netflix-shortcuts |
URL de la Page d'Aide | https://github.com/foxou33/netflix-shortcuts/issues |
Langues Prises en Charge | 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" ] } |