IMDB Rating in Netflix

Displays IMDb ratings in Netflix

IMDB Rating in Netflixคืออะไร?

IMDB Rating in Netflix เป็นส่วนขยายของ Chrome ที่พัฒนาโดย akshatgadhwal72 และคุณลักษณะหลักของมันคือ "Displays IMDb ratings in Netflix"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย IMDB Rating in Netflix

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

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

                        Provides Premium Netflix Viewing Experience with IMDb ratings for imformed decision making
- Minimalist UI, Lowest Distraction
- High Availability
- Life Time Validity

For every item ( even for the featured content at the top), you will see a IMDb rating or "N/A" if the item is not yet rated.                    

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

ชื่อ IMDB Rating in Netflix IMDB Rating in Netflix
ID llkcekkggahemmlbhmkcacabceginpcf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/imdb-rating-in-netflix/llkcekkggahemmlbhmkcacabceginpcf
คำอธิบาย Displays IMDb ratings in Netflix
ขนาดไฟล์ 6.38 KB
จำนวนการติดตั้ง 43
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2023-11-28
วันที่เผยแพร่ 2023-04-10
คะแนน 5.00/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา akshatgadhwal72
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://docs.google.com/document/d/1hrTFnufeou2_shRSvwbzcfTw7DpvNHXv2Owyz_2iDzU/edit?usp=sharing
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "IMDB Rating in Netflix",
    "version": "1.0",
    "description": "Displays IMDb ratings in Netflix",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "Information Page"
    }
}