TV Chart
View a chart of any TV show's user ratings, by episode.
TV Chartคืออะไร?
TV Chart เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://benmiz.com และคุณลักษณะหลักของมันคือ "View a chart of any TV show's user ratings, by episode."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TV Chart
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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 } |