RateFlix

Show IMDb, Rotten Tomatoes, and Metacritic ratings on Netflix™

RateFlixคืออะไร?

RateFlix เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tanner Rutgers และคุณลักษณะหลักของมันคือ "Show IMDb, Rotten Tomatoes, and Metacritic ratings on Netflix™"

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

screenshot

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

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

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

                        Adds IMDb™, Rotten Tomatoes™, and Metacritic™ ratings to Netflix™ in the following ways:

1. Movies and TV shows will show an IMDb™ rating in the expanded card while browsing

2. Rotten Tomatoes™ and Metacritic™ ratings will also be displayed in the same way, but currently only for some movies

3. Clicking on an IMDb™ rating will open the IMDb™ page for that movie or TV show in a new tab

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

If you're enjoying the app, please support the developer by donating!
You can become a patron here: https://www.patreon.com/bePatron?c=1219860 
or donate directly via PayPal here: https://paypal.me/trutgers.

Please also feel free to check out the project and help develop fixes or new features here: https://github.com/tanner-rutgers/RateFlix

Thanks for your support!                    

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

ชื่อ RateFlix RateFlix
ID dddmgiigenogheihnldadkdooelhepcg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/rateflix/dddmgiigenogheihnldadkdooelhepcg
คำอธิบาย Show IMDb, Rotten Tomatoes, and Metacritic ratings on Netflix™
ขนาดไฟล์ 67.7 KB
จำนวนการติดตั้ง 12,238
เวอร์ชันปัจจุบัน 3.2
อัปเดตครั้งล่าสุด 2022-10-11
วันที่เผยแพร่ 2018-08-19
คะแนน 3.57/5 รวมทั้งหมด 122 คะแนน
ผู้พัฒนา Tanner Rutgers
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "RateFlix",
    "description": "Show IMDb, Rotten Tomatoes, and Metacritic ratings on Netflix\u2122",
    "version": "3.2",
    "icons": {
        "16": "images\/icon_16.png",
        "24": "images\/icon_24.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "24": "images\/icon_24.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png"
        },
        "default_title": "RateFlix",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.netflix.com\/*"
            ],
            "css": [
                "stylesheets\/contentscript.css"
            ],
            "js": [
                "javascript\/jquery-3.1.1.min.js",
                "javascript\/logger.js",
                "javascript\/omdb.js",
                "javascript\/inject.js",
                "javascript\/extract.js",
                "javascript\/contentscript.js"
            ]
        }
    ],
    "background": {
        "service_worker": "javascript\/background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/imdb_31x14.png",
                "images\/rt_logo.png",
                "images\/metacritic_logo.png"
            ],
            "matches": [
                "https:\/\/*.netflix.com\/*"
            ]
        }
    ]
}