IMDB Ratings Viewer

Shows ratings beside Movie names on Actor pages

IMDB Ratings Viewerとは何ですか?

IMDB Ratings Viewerはshadyabhi (Abhijeet Rastogi)によって開発されたChromeの拡張機能で、その主な機能は「Shows ratings beside Movie names on Actor pages」です。

拡張機能のスクリーンショット

screenshot

IMDB Ratings Viewer拡張機能のCRXファイルをダウンロード

IMDB Ratings Viewer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        If you are a movie freak, a day won't pass when you won't open an actor's page and find more movies to watch.

The actor's page has the list of all the movies in which he acted but for some reason IMDb doesn't show the movie ratings. I feel to lazy to open each links and watch the rating.

So, I  wrote this extension to ease up the process. The ratings of movies are shown beside the names of the movies and after installing there will not be any need to open movie's link in new tab just to watch the rating.                    

拡張機能の基本情報

名前 IMDB Ratings Viewer IMDB Ratings Viewer
ID daaoegihbflfijkdhalidlmochdbobgb
公式URL https://chromewebstore.google.com/detail/imdb-ratings-viewer/daaoegihbflfijkdhalidlmochdbobgb
説明 Shows ratings beside Movie names on Actor pages
ファイルサイズ 67.84 KB
インストール数 647
現在のバージョン 2.9
最終更新日 2023-04-14
公開日 2020-07-28
評価 3.81/5 合計 36 レビュー
開発者 shadyabhi (Abhijeet Rastogi)
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/shadyabhi/IMDb-Ratings-Viewer
ヘルプページのURL https://github.com/shadyabhi/IMDb-Ratings-Viewer
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IMDB Ratings Viewer",
    "version": "2.9",
    "description": "Shows ratings beside Movie names on Actor pages",
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "https:\/\/www.imdb.com\/name\/*",
                "https:\/\/www.imdb.com\/title\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "manifest_version": 3
}