My IMDb

Highlights the movies you've already seen (voted for) when searching IMDb or displaying actor/director pages.

My IMDb란 무엇입니까?

My IMDb은(는) https://sites.google.com/site/c00lextensionz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlights the movies you've already seen (voted for) when searching IMDb or displaying actor/director pages."입니다.

확장 프로그램 스크린샷

screenshot

My IMDb 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Highlights movie titles and adds your ratings for movies you've already seen (voted for) when searching IMDb, displaying actor/director pages, or browsing movie lists (e.g. Top 250 voted by users, Awards, Box Office lists).

To customize the highlighting colors, right click on the extension's icon and choose "Options".                    

확장 프로그램 기본 정보

이름 My IMDb My IMDb
ID ngicopfkgbodejbbfalbmobdpjebhhmb
공식 URL https://chromewebstore.google.com/detail/my-imdb/ngicopfkgbodejbbfalbmobdpjebhhmb
설명 Highlights the movies you've already seen (voted for) when searching IMDb or displaying actor/director pages.
파일 크기 83.57 KB
설치 횟수 6,274
현재 버전 5.1
최근 업데이트 2023-02-02
출시 날짜 2020-06-17
평점 4.36/5 총 142 개의 평점
개발자 https://sites.google.com/site/c00lextensionz
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "My IMDb",
    "version": "5.1",
    "description": "Highlights the movies you've already seen (voted for) when searching IMDb or displaying actor\/director pages.",
    "icons": {
        "48": "myimdb48.png",
        "128": "myimdb128.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.imdb.com\/*",
                "https:\/\/*.imdb.com\/*"
            ],
            "exclude_globs": [
                "http:\/\/*.imdb.com\/user\/ur*\/lists*",
                "http:\/\/*.imdb.com\/user\/ur*\/ratings*"
            ],
            "run_at": "document_end",
            "js": [
                "myimdb.js"
            ],
            "css": [
                "myimdb.css"
            ]
        }
    ],
    "manifest_version": 3,
    "permissions": [
        "storage"
    ]
}