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é es Where to watch - Playpilot/IMDb?
Where to watch - Playpilot/IMDb es una extensión de Chrome desarrollada por Tobias Skarhed, y su función principal es "Adds a link on a movie's IMDb page where it is possible to see where to watch it.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Where to watch - Playpilot/IMDb
Descarga archivos de extensión Where to watch - Playpilot/IMDb en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Adds a quick link from an IMDb movie page to Playpilot, where you quickly can find where to stream or buy the movie.
Información Básica de la Extensión
Nombre | Where to watch - Playpilot/IMDb |
ID | gbkcbeadggmaepdjjpikfneiipcldfjd |
URL Oficial | https://chromewebstore.google.com/detail/where-to-watch-playpiloti/gbkcbeadggmaepdjjpikfneiipcldfjd |
Descripción | Adds a link on a movie's IMDb page where it is possible to see where to watch it. |
Tamaño del Archivo | 198 KB |
Cantidad de Instalaciones | 38 |
Versión Actual | 0.2.2 |
Última Actualización | 2021-04-13 |
Fecha de Publicación | 2021-03-09 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Tobias Skarhed |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/tskarhed/playpilot-imdb-extension |
URL de la Página de Ayuda | https://github.com/tskarhed/playpilot-imdb-extension/issues |
Idiomas Soportados | 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" } } |