Netflix IMDb Ratings

Adds the IMDb rating to Netflix show cards

Netflix IMDb Ratingsคืออะไร?

Netflix IMDb Ratings เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kanslulz และคุณลักษณะหลักของมันคือ "Adds the IMDb rating to Netflix show cards"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix IMDb Ratings

ดาวน์โหลดไฟล์ส่วนขยาย Netflix IMDb Ratings ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension adds a bubble with the IMDb rating when you hover over a card on Netflix. It looks native and links to the IMDb description page.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Netflix IMDb Ratings Netflix IMDb Ratings
ID flbaobpeildpkibhejhbapoleckbjkih
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/netflix-imdb-ratings/flbaobpeildpkibhejhbapoleckbjkih
คำอธิบาย Adds the IMDb rating to Netflix show cards
ขนาดไฟล์ 6.33 KB
จำนวนการติดตั้ง 71
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2017-04-09
วันที่เผยแพร่ 2017-04-09
คะแนน 2.22/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา kanslulz
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix IMDb Ratings",
    "description": "Adds the IMDb rating to Netflix show cards",
    "version": "1.1",
    "browser_action": {
        "default_icon": "logo.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.netflix.com\/*",
                "http:\/\/*.netflix.com\/*"
            ],
            "js": [
                "page_observer.js",
                "rating_utils.js"
            ]
        }
    ]
}