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ファイルをダウンロード

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

拡張機能の使用方法

                        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
Eメール [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"
    ]
}