Where to watch - Playpilot/IMDb

Adds a link on a movie's IMDb page where it is possible to see where to watch it.

Cos'è Where to watch - Playpilot/IMDb?

Where to watch - Playpilot/IMDb è un'estensione di Chrome sviluppata da Tobias Skarhed, e la sua funzione principale è "Adds a link on a movie's IMDb page where it is possible to see where to watch it.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Where to watch - Playpilot/IMDb

Scarica i file di estensione Where to watch - Playpilot/IMDb in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Adds a quick link from an IMDb movie page to Playpilot, where you quickly can find where to stream or buy the movie.                    

Informazioni di Base sull'Estensione

Nome Where to watch - Playpilot/IMDb Where to watch - Playpilot/IMDb
ID gbkcbeadggmaepdjjpikfneiipcldfjd
URL Ufficiale https://chromewebstore.google.com/detail/where-to-watch-playpiloti/gbkcbeadggmaepdjjpikfneiipcldfjd
Descrizione Adds a link on a movie's IMDb page where it is possible to see where to watch it.
Dimensione del File 198 KB
Conteggio Installazioni 38
Versione Corrente 0.2.2
Ultimo Aggiornamento 2021-04-13
Data di Pubblicazione 2021-03-09
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Tobias Skarhed
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/tskarhed/playpilot-imdb-extension
URL della Pagina di Aiuto https://github.com/tskarhed/playpilot-imdb-extension/issues
Lingue Supportate 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"
    }
}