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
官方網址 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"
    }
}