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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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
อีเมล [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"
    ]
}