Where to watch - Playpilot/IMDb

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

O que é Where to watch - Playpilot/IMDb?

Where to watch - Playpilot/IMDb é uma extensão do Chrome desenvolvida por Tobias Skarhed, e sua principal característica é "Adds a link on a movie's IMDb page where it is possible to see where to watch it.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Where to watch - Playpilot/IMDb

Baixe arquivos de extensão Where to watch - Playpilot/IMDb no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Where to watch - Playpilot/IMDb Where to watch - Playpilot/IMDb
ID gbkcbeadggmaepdjjpikfneiipcldfjd
URL Oficial https://chromewebstore.google.com/detail/where-to-watch-playpiloti/gbkcbeadggmaepdjjpikfneiipcldfjd
Descrição Adds a link on a movie's IMDb page where it is possible to see where to watch it.
Tamanho do Arquivo 198 KB
Contagem de Instalações 38
Versão Atual 0.2.2
Última Atualização 2021-04-13
Data de Publicação 2021-03-09
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Tobias Skarhed
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/tskarhed/playpilot-imdb-extension
URL da Página de Ajuda https://github.com/tskarhed/playpilot-imdb-extension/issues
Idiomas Suportados 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"
    }
}