IMDB Rating in Netflix

Displays IMDb ratings in Netflix

什么是IMDB Rating in Netflix?

IMDB Rating in Netflix是由akshatgadhwal72开发的Chrome扩展程序,该扩展的主要功能是“Displays IMDb ratings in Netflix”。

扩展截图

screenshot
screenshot
screenshot

下载IMDB Rating in Netflix扩展crx文件

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

扩展使用说明

                        Provides Premium Netflix Viewing Experience with IMDb ratings for imformed decision making
- Minimalist UI, Lowest Distraction
- High Availability
- Life Time Validity

For every item ( even for the featured content at the top), you will see a IMDb rating or "N/A" if the item is not yet rated.                    

扩展基本信息

名称 IMDB Rating in Netflix IMDB Rating in Netflix
ID llkcekkggahemmlbhmkcacabceginpcf
官方URL https://chromewebstore.google.com/detail/imdb-rating-in-netflix/llkcekkggahemmlbhmkcacabceginpcf
简介 Displays IMDb ratings in Netflix
文件大小 6.38 KB
安装次数 43
当前版本 1.0
更新时间 2023-11-28
上架时间 2023-04-10
评分 5.00/5 共8次评分
开发者 akshatgadhwal72
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://docs.google.com/document/d/1hrTFnufeou2_shRSvwbzcfTw7DpvNHXv2Owyz_2iDzU/edit?usp=sharing
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "IMDB Rating in Netflix",
    "version": "1.0",
    "description": "Displays IMDb ratings in Netflix",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "Information Page"
    }
}