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은(는) Pankaj Bhayare and Gaurav Panday에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

RateFlix: IMDb and RT ratings on Netflix 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}