RateFlix: IMDb and RT ratings on Netflix
Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX
Was ist RateFlix: IMDb and RT ratings on Netflix?
RateFlix: IMDb and RT ratings on Netflix ist eine Chrome-Erweiterung, die von Pankaj Bhayare and Gaurav Panday entwickelt wurde, und ihr Hauptmerkmal ist "Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX".
Erweiterungsscreenshots
RateFlix: IMDb and RT ratings on Netflix-Erweiterungs-CRX-Datei herunterladen
Laden Sie RateFlix: IMDb and RT ratings on Netflix-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 :)
Grundlegende Informationen zur Erweiterung
Name | RateFlix: IMDb and RT ratings on Netflix |
ID | pcmbijibnnemoogikbfjdjnhablljgbp |
Offizielle URL | https://chromewebstore.google.com/detail/rateflix-imdb-and-rt-rati/pcmbijibnnemoogikbfjdjnhablljgbp |
Beschreibung | Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX |
Dateigröße | 25.5 KB |
Installationsanzahl | 28 |
Aktuelle Version | 0.2 |
Letztes Update | 2020-08-11 |
Veröffentlichungsdatum | 2020-07-23 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Pankaj Bhayare and Gaurav Panday |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |