IMDB Rating in Netflix
Displays IMDb ratings in Netflix
Qu'est-ce que IMDB Rating in Netflix ?
IMDB Rating in Netflix est une extension Chrome développée par akshatgadhwal72, et sa fonction principale est "Displays IMDb ratings in Netflix".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension IMDB Rating in Netflix
Téléchargez les fichiers d'extension IMDB Rating in Netflix au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Provides Premium Netflix Viewing Experience with IMDb ratings for imformed decision making - Minimalist UI, Lowest Distraction - High Availability - Life Time Validity For every item ( even for the featured content at the top), you will see a IMDb rating or "N/A" if the item is not yet rated.
Informations de Base sur l'Extension
Nom | IMDB Rating in Netflix |
ID | llkcekkggahemmlbhmkcacabceginpcf |
URL Officiel | https://chromewebstore.google.com/detail/imdb-rating-in-netflix/llkcekkggahemmlbhmkcacabceginpcf |
Description | Displays IMDb ratings in Netflix |
Taille du Fichier | 6.38 KB |
Nombre d'Installations | 43 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2023-11-28 |
Date de Publication | 2023-04-10 |
Évaluation | 5.00/5 Total 8 Évaluations |
Développeur | akshatgadhwal72 |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://docs.google.com/document/d/1hrTFnufeou2_shRSvwbzcfTw7DpvNHXv2Owyz_2iDzU/edit?usp=sharing |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "IMDB Rating in Netflix", "version": "1.0", "description": "Displays IMDb ratings in Netflix", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle", "all_frames": false } ], "action": { "default_popup": "popup.html", "default_title": "Information Page" } } |