RateFlix: IMDb and RT ratings on Netflix

Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX

RateFlix: IMDb and RT ratings on Netflixคืออะไร?

RateFlix: IMDb and RT ratings on Netflix เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pankaj Bhayare and Gaurav Panday และคุณลักษณะหลักของมันคือ "Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RateFlix: IMDb and RT ratings on Netflix

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

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

                        We are familiar with situations where we strain ourselves by searching ratings of ever evolving online streaming content before deciding to invest our time in it.

The RateFlix extension saves you all the trouble and displays the IMDb and Rotten Tomotoes ratings right in the content-preview on Netflix. The ratings now are just a click away on Netflix itself.

Happy binge-watching :)                    

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

ชื่อ RateFlix: IMDb and RT ratings on Netflix RateFlix: IMDb and RT ratings on Netflix
ID pcmbijibnnemoogikbfjdjnhablljgbp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/rateflix-imdb-and-rt-rati/pcmbijibnnemoogikbfjdjnhablljgbp
คำอธิบาย Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX
ขนาดไฟล์ 25.5 KB
จำนวนการติดตั้ง 28
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2020-08-11
วันที่เผยแพร่ 2020-07-23
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Pankaj Bhayare and Gaurav Panday
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RateFlix: IMDb and RT ratings on Netflix",
    "version": "0.2",
    "description": "Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*",
                "https:\/\/www.omdbapi.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "rating.css"
            ]
        }
    ],
    "icons": {
        "16": "extentionIcon.png",
        "128": "extentionIcon128.png"
    },
    "permissions": [
        "https:\/\/www.netflix.com\/*",
        "https:\/\/www.omdbapi.com\/*"
    ],
    "web_accessible_resources": [
        "rating.js"
    ],
    "browser_action": {
        "default_icon": "extentionIcon.png",
        "default_popup": "popup.html"
    }
}