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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Highlights the movies you've already seen (voted for) when searching IMDb or displaying actor/director pages."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में My IMDb एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}