Where to watch - Playpilot/IMDb

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

What is Where to watch - Playpilot/IMDb?

Where to watch - Playpilot/IMDb is a Chrome extension developed by Tobias Skarhed, and its main feature is "Adds a link on a movie's IMDb page where it is possible to see where to watch it.".

Extension Screenshots

screenshot
screenshot

Download Where to watch - Playpilot/IMDb Extension CRX File

Download Where to watch - Playpilot/IMDb extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Where to watch - Playpilot/IMDb Where to watch - Playpilot/IMDb
ID gbkcbeadggmaepdjjpikfneiipcldfjd
Official URL https://chromewebstore.google.com/detail/where-to-watch-playpiloti/gbkcbeadggmaepdjjpikfneiipcldfjd
Description Adds a link on a movie's IMDb page where it is possible to see where to watch it.
File Size 198 KB
Installation Count 38
Current Version 0.2.2
Last Updated 2021-04-13
Publish Date 2021-03-09
Rating 5.00/5 Total 1 Ratings
Developer Tobias Skarhed
Email [email protected]
Payment Type free
Extension Website https://github.com/tskarhed/playpilot-imdb-extension
Help Page URL https://github.com/tskarhed/playpilot-imdb-extension/issues
Supported Languages 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"
    }
}