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
官方網址 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
}