My IMDb

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

Qu'est-ce que My IMDb ?

My IMDb est une extension Chrome développée par https://sites.google.com/site/c00lextensionz, et sa fonction principale est "Highlights the movies you've already seen (voted for) when searching IMDb or displaying actor/director pages.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension My IMDb

Téléchargez les fichiers d'extension My IMDb au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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".                    

Informations de Base sur l'Extension

Nom My IMDb My IMDb
ID ngicopfkgbodejbbfalbmobdpjebhhmb
URL Officiel https://chromewebstore.google.com/detail/my-imdb/ngicopfkgbodejbbfalbmobdpjebhhmb
Description Highlights the movies you've already seen (voted for) when searching IMDb or displaying actor/director pages.
Taille du Fichier 83.57 KB
Nombre d'Installations 6,274
Version Actuelle 5.1
Dernière Mise à Jour 2023-02-02
Date de Publication 2020-06-17
Évaluation 4.36/5 Total 142 Évaluations
Développeur https://sites.google.com/site/c00lextensionz
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}