IMDB2Netflix
Go to netflix search page from IMDB site
Qu'est-ce que IMDB2Netflix ?
IMDB2Netflix est une extension Chrome développée par Carwack, et sa fonction principale est "Go to netflix search page from IMDB site".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension IMDB2Netflix
Téléchargez les fichiers d'extension IMDB2Netflix 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
Are you like me, searching for a good movie or series on IMDB and watching them on Netflix? I made this simple chrome extension that add a button on the IMDB website and directs you to the netflix search page in a new tab Easy & Pratical NOTE: Not all movies and series on IMDB are on Netflix.
Informations de Base sur l'Extension
Nom | |
ID | cdmjmihepfaakkoiojdjfjnehdjjmdco |
URL Officiel | https://chrome.google.com/webstore/detail/imdb2netflix/cdmjmihepfaakkoiojdjfjnehdjjmdco |
Description | Go to netflix search page from IMDB site |
Taille du Fichier | 65.78 KB |
Nombre d'Installations | 31 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2016-02-13 |
Date de Publication | 2016-02-13 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Carwack |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "IMDB2Netflix", "version": "1.0", "manifest_version": 2, "description": "Go to netflix search page from IMDB site", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "css": [ "Style.css" ], "matches": [ "http:\/\/www.imdb.com\/title\/*" ], "js": [ "jquery.min.js", "eventhandler.js" ], "run_at": "document_end" } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "tabs", "http:\/\/www.imdb.com\/*" ] } |