Rotten Tomatoes on Netflix
Displays the Rotten tomatoes score of everything on netflix while browsing.
Qu'est-ce que Rotten Tomatoes on Netflix ?
Rotten Tomatoes on Netflix est une extension Chrome développée par dannydannygoldberggoldberg, et sa fonction principale est "Displays the Rotten tomatoes score of everything on netflix while browsing.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Rotten Tomatoes on Netflix
Téléchargez les fichiers d'extension Rotten Tomatoes on 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
🍅Decide what to watch FAST 👀💨 🍅See the Rotten Tomatoes™ and IMDB™ score of everything on Netflix™ while browsing 💯 🍅View how popular a show is with the flame index (based on IMDB popularity data) 🍅No more opening new tabs to compare scores🤗 🍅Light weight 🪶, swift🐆, and FREE 💰 Displays scores unobtrusively under the title card. TY! :)
Informations de Base sur l'Extension
Nom | |
ID | bijfmhgcncbfihbcgnfdljkncndadhde |
URL Officiel | https://chromewebstore.google.com/detail/rotten-tomatoes-on-netfli/bijfmhgcncbfihbcgnfdljkncndadhde |
Description | Displays the Rotten tomatoes score of everything on netflix while browsing. |
Taille du Fichier | 33.88 KB |
Nombre d'Installations | 100 |
Version Actuelle | 1.9 |
Dernière Mise à Jour | 2022-03-07 |
Date de Publication | 2021-12-16 |
Évaluation | 4.50/5 Total 2 Évaluations |
Développeur | dannydannygoldberggoldberg |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "options_page": "options.html", "name": "Rotten Tomatoes on Netflix", "description": "Displays the Rotten tomatoes score of everything on netflix while browsing.", "version": "1.9", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_icon": "icon128.png", "default_title": "Click here to see info!", "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "upArrow.png", "downArrow.png", "neutral.png", "imdbScore.png", "imdbScoreNoneLogo.png", "fire.png", "criticCertifiedFresh.png", "criticFresh.png", "criticSplat.png", "audienceFresh.png", "audienceSplat.png", "criticNone.png", "audienceNone.png" ], "matches": [ "*:\/\/www.netflix.com\/*" ], "extension_ids": [] } ], "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/*" ], "js": [ "content.js" ], "css": [ "main.css" ] } ] } |