SVODEX
Adds the IMDb and Rotten Tomatoes rating to every available title on Netflix, Disney+ and HBO Max
Τι είναι το SVODEX;
Το SVODEX είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://svodex.com, και η κύρια λειτουργία του είναι "Adds the IMDb and Rotten Tomatoes rating to every available title on Netflix, Disney+ and HBO Max".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης SVODEX
Λήψη αρχείων επέκτασης SVODEX σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Adds IMDb and Rotten Tomatoes ratings to Netflix, Disney+ and HBO Max titles. Simply enable the extension and hover over any title on Netflix or HBO Max, or click on any title on Disney+ to see the ratings. Very efficient on CPU and memory, this lightweight extension adds IMDb and Rotten Tomatoes ratings to every title available. Features: - Displays IMDb and Rotten Tomatoes ratings on every title card on Netflix. - Displays IMDb and Rotten Tomatoes ratings on every title card on HBO Max. - Displays IMDb and Rotten Tomatoes ratings on every details page on Disney Plus. - Support for Prime Video, Hulu and more coming soon. Please rate this extension if you find it helpful. New in v 3.3.5. - updated permissions
Βασικές Πληροφορίες Επέκτασης
Όνομα | SVODEX |
ID | malgjkedapomgdnolihjjfbdagghmljb |
Επίσημο URL | https://chromewebstore.google.com/detail/svodex/malgjkedapomgdnolihjjfbdagghmljb |
Περιγραφή | Adds the IMDb and Rotten Tomatoes rating to every available title on Netflix, Disney+ and HBO Max |
Μέγεθος Αρχείου | 44.14 KB |
Αριθμός Εγκαταστάσεων | 2,917 |
Τρέχουσα Έκδοση | 3.3.5 |
Τελευταία Ενημέρωση | 2023-12-16 |
Ημερομηνία Δημοσίευσης | 2019-09-03 |
Αξιολόγηση | 3.64/5 Συνολικά 55 Αξιολογήσεις |
Προγραμματιστής | https://svodex.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://svodex.com |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SVODEX", "version": "3.3.5", "description": "Adds the IMDb and Rotten Tomatoes rating to every available title on Netflix, Disney+ and HBO Max", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/*", "https:\/\/www.disneyplus.com\/*", "https:\/\/play.hbomax.com\/*", "https:\/\/play.max.com\/*", "https:\/\/www.primevideo.com\/*", "https:\/\/www.apple.com\/*", "https:\/\/www.hulu.com\/" ], "js": [ "main.js" ], "run_at": "document_end" } ], "action": { "default_title": "SVODEX", "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "*.svg" ], "matches": [ "https:\/\/play.hbomax.com\/*", "https:\/\/play.max.com\/*", "https:\/\/www.netflix.com\/*", "https:\/\/www.disneyplus.com\/*" ] } ], "icons": { "128": "logo_small.png" }, "browser_specific_settings": { "gecko": { "id": "[email protected]" } }, "manifest_version": 3 } |