IMDb Ratings for Netflix™

Seamlessly integrates IMDb Ratings into Netflix. Never waste time on bad movies or TV shows ever again!

IMDb Ratings for Netflix™คืออะไร?

IMDb Ratings for Netflix™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Code Collective และคุณลักษณะหลักของมันคือ "Seamlessly integrates IMDb Ratings into Netflix. Never waste time on bad movies or TV shows ever again!"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Ever started watching something on Netflix, just to notice eventually that it's really bad?

This free and lightweight extension adds IMDb Ratings right into Netflix, so you know what you're getting yourself into before hitting the play button.

Pro Tips:
- The IMDb Rating features a Tooltip that includes more meta information (plot, awards, metascore, etc.).
- When you click the IMDb Rating a new tab will be opened with the respective IMDb page (which includes trailers and more information).

Please rate this extension if you find it useful. :-)

Updates:

v4.1.1
   + Updated to support latest Netflix UI changes
v3.5.1
   + Updated to accommodate latest Netflix UI changes 
v3.4.1:
   + Fixed and improved title matching
v3.3.6:
   + Ratings will now show correctly in the "More like this" slider
v3.3.2: 
   + Update to work with latest NF design
v3.3.1:
   + Switched to a new, more readable look based on user feedback
v3.1.1:
   + All problems fixed, proper caching implemented!
v2.7.3:
   + Removed unnecessary permissions
v2.7.2:
   + Improved speed

Permissions:
- No special permissions needed :-)

Disclaimer: Netflix™ and IMDb™ are registered trademarks and have no affiliation to this extension.


Privacy Policy:
https://collective.ga/privacy-policy/                    

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

ชื่อ IMDb Ratings for Netflix™ IMDb Ratings for Netflix™
ID dnbpnlalaijjbogmjbpdkdcohoibjcmp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/imdb-ratings-for-netflix/dnbpnlalaijjbogmjbpdkdcohoibjcmp
คำอธิบาย Seamlessly integrates IMDb Ratings into Netflix. Never waste time on bad movies or TV shows ever again!
ขนาดไฟล์ 207 KB
จำนวนการติดตั้ง 20,000
เวอร์ชันปัจจุบัน 4.1.1
อัปเดตครั้งล่าสุด 2021-04-15
วันที่เผยแพร่ 2021-04-15
คะแนน 3.30/5 รวมทั้งหมด 469 คะแนน
ผู้พัฒนา Code Collective
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://collective.ga/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "short_name": "__MSG_extShortName__",
    "description": "__MSG_extDescription__",
    "version": "4.1.1",
    "minimum_chrome_version": "55",
    "manifest_version": 2,
    "default_locale": "en",
    "background": {
        "page": "bg.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": "assets\/icon_128.png"
    },
    "icons": {
        "128": "assets\/app_icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.netflix.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "js\/content.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "js\/context.js",
        "assets\/blank.gif",
        "intro.html",
        "options.html"
    ],
    "permissions": [
        "*:\/\/*.netflix.com\/*",
        "contextMenus"
    ]
}