My IMDb

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

ما هو My IMDb؟

My IMDb هو إضافة Chrome تم تطويرها بواسطة 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 للإضافة My IMDb

قم بتنزيل ملفات الامتداد My IMDb بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}