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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 } |