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
电子邮箱 [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"
    }
}