Where to watch - Playpilot/IMDb

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

Was ist Where to watch - Playpilot/IMDb?

Where to watch - Playpilot/IMDb ist eine Chrome-Erweiterung, die von Tobias Skarhed entwickelt wurde, und ihr Hauptmerkmal ist "Adds a link on a movie's IMDb page where it is possible to see where to watch it.".

Erweiterungsscreenshots

screenshot
screenshot

Where to watch - Playpilot/IMDb-Erweiterungs-CRX-Datei herunterladen

Laden Sie Where to watch - Playpilot/IMDb-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Where to watch - Playpilot/IMDb Where to watch - Playpilot/IMDb
ID gbkcbeadggmaepdjjpikfneiipcldfjd
Offizielle URL https://chromewebstore.google.com/detail/where-to-watch-playpiloti/gbkcbeadggmaepdjjpikfneiipcldfjd
Beschreibung Adds a link on a movie's IMDb page where it is possible to see where to watch it.
Dateigröße 198 KB
Installationsanzahl 38
Aktuelle Version 0.2.2
Letztes Update 2021-04-13
Veröffentlichungsdatum 2021-03-09
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Tobias Skarhed
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/tskarhed/playpilot-imdb-extension
Hilfeseite URL https://github.com/tskarhed/playpilot-imdb-extension/issues
Unterstützte Sprachen 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"
    }
}