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
Eメール [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"
    }
}