Where to watch - Playpilot/IMDb

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

Where to watch - Playpilot/IMDbとは何ですか?

Where to watch - Playpilot/IMDbはTobias Skarhedによって開発されたChromeの拡張機能で、その主な機能は「Adds a link on a movie's IMDb page where it is possible to see where to watch it.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Where to watch - Playpilot/IMDb拡張機能のCRXファイルをダウンロード

Where to watch - Playpilot/IMDb拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Where to watch - Playpilot/IMDb Where to watch - Playpilot/IMDb
ID gbkcbeadggmaepdjjpikfneiipcldfjd
公式URL https://chromewebstore.google.com/detail/where-to-watch-playpiloti/gbkcbeadggmaepdjjpikfneiipcldfjd
説明 Adds a link on a movie's IMDb page where it is possible to see where to watch it.
ファイルサイズ 198 KB
インストール数 38
現在のバージョン 0.2.2
最終更新日 2021-04-13
公開日 2021-03-09
評価 5.00/5 合計 1 レビュー
開発者 Tobias Skarhed
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/tskarhed/playpilot-imdb-extension
ヘルプページのURL https://github.com/tskarhed/playpilot-imdb-extension/issues
対応言語 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"
    }
}