IMDB2Netflix
Go to netflix search page from IMDB site
Wat is IMDB2Netflix?
IMDB2Netflix is een Chrome-extensie ontwikkeld door Carwack, en de belangrijkste functie is "Go to netflix search page from IMDB site".
Extensie Screenshots
Download het CRX-bestand van de extensie IMDB2Netflix
Download IMDB2Netflix-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
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.
Basisinformatie over de Extensie
Naam | |
ID | cdmjmihepfaakkoiojdjfjnehdjjmdco |
Officiële URL | https://chrome.google.com/webstore/detail/imdb2netflix/cdmjmihepfaakkoiojdjfjnehdjjmdco |
Beschrijving | Go to netflix search page from IMDB site |
Bestandsgrootte | 65.78 KB |
Aantal Installaties | 31 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2016-02-13 |
Publicatiedatum | 2016-02-13 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Carwack |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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\/*" ] } |