Where to watch - Playpilot/IMDb

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

Apa itu Where to watch - Playpilot/IMDb?

Where to watch - Playpilot/IMDb adalah ekstensi Chrome yang dikembangkan oleh Tobias Skarhed, dan fitur utamanya adalah "Adds a link on a movie's IMDb page where it is possible to see where to watch it.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Where to watch - Playpilot/IMDb

Unduh file ekstensi Where to watch - Playpilot/IMDb dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Where to watch - Playpilot/IMDb Where to watch - Playpilot/IMDb
ID gbkcbeadggmaepdjjpikfneiipcldfjd
URL Resmi https://chromewebstore.google.com/detail/where-to-watch-playpiloti/gbkcbeadggmaepdjjpikfneiipcldfjd
Deskripsi Adds a link on a movie's IMDb page where it is possible to see where to watch it.
Ukuran File 198 KB
Jumlah Instalasi 38
Versi Saat Ini 0.2.2
Terakhir Diperbarui 2021-04-13
Tanggal Publikasi 2021-03-09
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Tobias Skarhed
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/tskarhed/playpilot-imdb-extension
URL Halaman Bantuan https://github.com/tskarhed/playpilot-imdb-extension/issues
Bahasa yang Didukung 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"
    }
}