Where to watch - Playpilot/IMDb
Adds a link on a movie's IMDb page where it is possible to see where to watch it.
Qu'est-ce que Where to watch - Playpilot/IMDb ?
Where to watch - Playpilot/IMDb est une extension Chrome développée par Tobias Skarhed, et sa fonction principale est "Adds a link on a movie's IMDb page where it is possible to see where to watch it.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Where to watch - Playpilot/IMDb
Téléchargez les fichiers d'extension Where to watch - Playpilot/IMDb 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
Adds a quick link from an IMDb movie page to Playpilot, where you quickly can find where to stream or buy the movie.
Informations de Base sur l'Extension
Nom | Where to watch - Playpilot/IMDb |
ID | gbkcbeadggmaepdjjpikfneiipcldfjd |
URL Officiel | https://chromewebstore.google.com/detail/where-to-watch-playpiloti/gbkcbeadggmaepdjjpikfneiipcldfjd |
Description | Adds a link on a movie's IMDb page where it is possible to see where to watch it. |
Taille du Fichier | 198 KB |
Nombre d'Installations | 38 |
Version Actuelle | 0.2.2 |
Dernière Mise à Jour | 2021-04-13 |
Date de Publication | 2021-03-09 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Tobias Skarhed |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/tskarhed/playpilot-imdb-extension |
URL de la Page d'Aide | https://github.com/tskarhed/playpilot-imdb-extension/issues |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Where to watch - Playpilot\/IMDb", "description": "Adds a link on a movie's IMDb page where it is possible to see where to watch it.", "version": "0.2.2", "manifest_version": 3, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "host_permissions": [ "https:\/\/atlas.playpilot.com\/api\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.imdb.com\/title\/*" ], "js": [ "contentScript.js" ], "css": [ "styles.css" ] } ], "background": { "service_worker": "background.js" } } |