Netflix++
Browser extensions enhancing your Netflix browsing experience
Qu'est-ce que Netflix++ ?
Netflix++ est une extension Chrome développée par stevokk, et sa fonction principale est "Browser extensions enhancing your Netflix browsing experience".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Netflix++
Téléchargez les fichiers d'extension Netflix++ 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
NEW! 2017 version, here to enhance your Netflix experience! Currently shows you ratings from 3 independent sources: IMDB, Rotten Tomatoes & Metacritic Fully open source, any issues or feature requests go here: https://github.com/stevokk/netflixplusplus
Informations de Base sur l'Extension
Nom | Netflix++ |
ID | ofiindmkglmjpndljggpcpamcglnmmpl |
URL Officiel | https://chromewebstore.google.com/detail/netflix++/ofiindmkglmjpndljggpcpamcglnmmpl |
Description | Browser extensions enhancing your Netflix browsing experience |
Taille du Fichier | 79.14 KB |
Nombre d'Installations | 4,279 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2017-08-13 |
Date de Publication | 2017-08-13 |
Évaluation | 4.00/5 Total 4 Évaluations |
Développeur | stevokk |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/stevokk/netflixplusplus |
URL de la Page d'Aide | https://github.com/stevokk/netflixplusplus |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix++", "version": "1.0.2", "description": "Browser extensions enhancing your Netflix browsing experience", "homepage_url": "https:\/\/github.com\/stevokk\/netflixplusplus", "manifest_version": 2, "minimum_chrome_version": "58", "applications": { "gecko": { "id": "netflixplusplus\/stevokk", "strict_min_version": "52.0" } }, "permissions": [ "storage", "https:\/\/netflixplusplus.heroku.com\/*", "http:\/\/localhost\/*" ], "icons": { "128": "icon-128.png" }, "options_ui": { "chrome_style": true, "page": "options.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.netflix.com\/*" ], "css": [ "content.css" ], "js": [ "content.js" ] } ] } |