RateFlix: IMDb and RT ratings on Netflix
Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX
Τι είναι το RateFlix: IMDb and RT ratings on Netflix;
Το RateFlix: IMDb and RT ratings on Netflix είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Pankaj Bhayare and Gaurav Panday, και η κύρια λειτουργία του είναι "Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης RateFlix: IMDb and RT ratings on Netflix
Λήψη αρχείων επέκτασης RateFlix: IMDb and RT ratings on Netflix σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
We are familiar with situations where we strain ourselves by searching ratings of ever evolving online streaming content before deciding to invest our time in it. The RateFlix extension saves you all the trouble and displays the IMDb and Rotten Tomotoes ratings right in the content-preview on Netflix. The ratings now are just a click away on Netflix itself. Happy binge-watching :)
Βασικές Πληροφορίες Επέκτασης
Όνομα | RateFlix: IMDb and RT ratings on Netflix |
ID | pcmbijibnnemoogikbfjdjnhablljgbp |
Επίσημο URL | https://chromewebstore.google.com/detail/rateflix-imdb-and-rt-rati/pcmbijibnnemoogikbfjdjnhablljgbp |
Περιγραφή | Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX |
Μέγεθος Αρχείου | 25.5 KB |
Αριθμός Εγκαταστάσεων | 28 |
Τρέχουσα Έκδοση | 0.2 |
Τελευταία Ενημέρωση | 2020-08-11 |
Ημερομηνία Δημοσίευσης | 2020-07-23 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | Pankaj Bhayare and Gaurav Panday |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "RateFlix: IMDb and RT ratings on Netflix", "version": "0.2", "description": "Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/*", "https:\/\/www.omdbapi.com\/*" ], "js": [ "content.js" ], "css": [ "rating.css" ] } ], "icons": { "16": "extentionIcon.png", "128": "extentionIcon128.png" }, "permissions": [ "https:\/\/www.netflix.com\/*", "https:\/\/www.omdbapi.com\/*" ], "web_accessible_resources": [ "rating.js" ], "browser_action": { "default_icon": "extentionIcon.png", "default_popup": "popup.html" } } |