TV Chart

View a chart of any TV show's user ratings, by episode.

TV Chart란 무엇입니까?

TV Chart은(는) https://benmiz.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View a chart of any TV show's user ratings, by episode."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

TV Chart 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Can't decide which series to binge watch next? TV Chart lets you see a user rating graph of any TV show, straight from Netflix!
After you install the extension, a little graph icon will be added to shows' description on Netflix. Click it, and the rating chart pops up! 

The charts will display the ratings across all of their seasons and episodes, which makes it easy to figure out if they’re worth watching. You’ll be able to tell if a show has been consistently good, and also quickly find the best and worst episodes in the series.

Please note that at the moment, TV Chart only works when the language on your Netflix account is set to English.

For rating charts of shows that are not on Netflix, go to tvchart.benmiz.com                    

확장 프로그램 기본 정보

이름 TV Chart TV Chart
ID hodmmnlcinpkhnkkmfdbblcdnfffakgk
공식 URL https://chromewebstore.google.com/detail/tv-chart/hodmmnlcinpkhnkkmfdbblcdnfffakgk
설명 View a chart of any TV show's user ratings, by episode.
파일 크기 19.3 KB
설치 횟수 981
현재 버전 1.2.1
최근 업데이트 2021-02-06
출시 날짜 2020-06-20
평점 4.00/5 총 4 개의 평점
개발자 https://benmiz.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://tvchart.benmiz.com/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TV Chart",
    "version": "1.2.1",
    "description": "View a chart of any TV show's user ratings, by episode.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.imdb.com\/title\/*",
                "https:\/\/www.netflix.com\/*"
            ],
            "css": [
                "style.css",
                "hint.min.css"
            ],
            "js": [
                "common.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.imdb.com\/title\/*"
            ],
            "js": [
                "imdb.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "js": [
                "netflix.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "assets\/*"
    ],
    "icons": {
        "16": "images\/tvmoji16.png",
        "32": "images\/tvmoji32.png",
        "48": "images\/tvmoji48.png",
        "128": "images\/tvmoji128.png"
    },
    "manifest_version": 2
}