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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}