Where to watch - Playpilot/IMDb

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

Co to jest Where to watch - Playpilot/IMDb?

Where to watch - Playpilot/IMDb to rozszerzenie Chrome opracowane przez Tobias Skarhed, a jego główną funkcją jest „Adds a link on a movie's IMDb page where it is possible to see where to watch it.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Where to watch - Playpilot/IMDb

Pobierz pliki rozszerzeń Where to watch - Playpilot/IMDb w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Where to watch - Playpilot/IMDb Where to watch - Playpilot/IMDb
ID gbkcbeadggmaepdjjpikfneiipcldfjd
Oficjalny URL https://chromewebstore.google.com/detail/where-to-watch-playpiloti/gbkcbeadggmaepdjjpikfneiipcldfjd
Opis Adds a link on a movie's IMDb page where it is possible to see where to watch it.
Rozmiar pliku 198 KB
Liczba instalacji 38
Aktualna Wersja 0.2.2
Ostatnia Aktualizacja 2021-04-13
Data Publikacji 2021-03-09
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Tobias Skarhed
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/tskarhed/playpilot-imdb-extension
Adres URL Strony Pomocy https://github.com/tskarhed/playpilot-imdb-extension/issues
Obsługiwane Języki 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"
    }
}