HBO IMDB Ratings for Chrome

This extension will display the IMDB rating of the title your mouse is hovering over, in the bottom right corner.

什么是HBO IMDB Ratings for Chrome?

HBO IMDB Ratings for Chrome是由andersbaero开发的Chrome扩展程序,该扩展的主要功能是“This extension will display the IMDB rating of the title your mouse is hovering over, in the bottom right corner.”。

扩展截图

screenshot
screenshot

下载HBO IMDB Ratings for Chrome扩展crx文件

下载HBO IMDB Ratings for Chrome扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension will display the IMDB rating of the title your mouse is hovering over, in the bottom right corner.                    

扩展基本信息

名称 HBO IMDB Ratings for Chrome HBO IMDB Ratings for Chrome
ID gimcheaobpkledablonfmgppbcjbiopd
官方URL https://chromewebstore.google.com/detail/hbo-imdb-ratings-for-chro/gimcheaobpkledablonfmgppbcjbiopd
简介 This extension will display the IMDB rating of the title your mouse is hovering over, in the bottom right corner.
文件大小 578 KB
安装次数 327
当前版本 1.0
更新时间 2019-09-20
上架时间 2019-09-19
评分 2.60/5 共5次评分
开发者 andersbaero
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HBO IMDB Ratings for Chrome",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.hbonordic.com\/*"
            ],
            "js": [
                "jquery-3.4.0.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/riktigIcon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}