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
官方網址 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)
電子郵箱 [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
}