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ファイルをダウンロード

TV Chart拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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
}