IMDB Ratings Viewer

Shows ratings beside Movie names on Actor pages

IMDB Ratings Viewerคืออะไร?

IMDB Ratings Viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย shadyabhi (Abhijeet Rastogi) และคุณลักษณะหลักของมันคือ "Shows ratings beside Movie names on Actor pages"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย IMDB Ratings Viewer

ดาวน์โหลดไฟล์ส่วนขยาย 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)
อีเมล [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
}