The Streaming Wizard
Adds IMDB, Rotten Tomatoes, and Metacritic ratings, along with Oscar and Golden Globe awards, to titles on Netflix and Hulu.
Τι είναι το The Streaming Wizard;
Το The Streaming Wizard είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον kidusn, και η κύρια λειτουργία του είναι "Adds IMDB, Rotten Tomatoes, and Metacritic ratings, along with Oscar and Golden Globe awards, to titles on Netflix and Hulu.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης The Streaming Wizard
Λήψη αρχείων επέκτασης The Streaming Wizard σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
You can also click on the IMDB or Rotten Tomatoes ratings to visit the official IMDB or Rotten Tomatoes web pages in a new tab. With this lightweight extension, you will never again have to browse Netflix or Hulu while simultaneously searching for ratings on the side. The cumbersome days of finding something good to watch and avoiding all the crap are over.
Βασικές Πληροφορίες Επέκτασης
Όνομα | The Streaming Wizard |
ID | kccdfgnjifmimampikofeaobooddbcaj |
Επίσημο URL | https://chromewebstore.google.com/detail/the-streaming-wizard/kccdfgnjifmimampikofeaobooddbcaj |
Περιγραφή | Adds IMDB, Rotten Tomatoes, and Metacritic ratings, along with Oscar and Golden Globe awards, to titles on Netflix and Hulu. |
Μέγεθος Αρχείου | 135 KB |
Αριθμός Εγκαταστάσεων | 67 |
Τρέχουσα Έκδοση | 1.0.0 |
Τελευταία Ενημέρωση | 2019-08-25 |
Ημερομηνία Δημοσίευσης | 2019-08-24 |
Αξιολόγηση | 3.20/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | kidusn |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "manifest_version": 2, "name": "The Streaming Wizard", "version": "1.0.0", "description": "Adds IMDB, Rotten Tomatoes, and Metacritic ratings, along with Oscar and Golden Globe awards, to titles on Netflix and Hulu.", "icons": { "16": "images\/meta\/icon16.png", "32": "images\/meta\/icon32.png", "48": "images\/meta\/icon48.png", "128": "images\/meta\/icon128.png" }, "background": { "scripts": [ "src\/background.js" ] }, "content_scripts": [ { "css": [ "styles\/style.css" ], "js": [ "src\/jquery-3.4.1.min.js", "src\/getRatings.js", "src\/addRatings.js", "src\/contentscriptnetflix.js" ], "matches": [ "https:\/\/*.netflix.com\/*" ] }, { "css": [ "styles\/style.css" ], "js": [ "src\/jquery-3.4.1.min.js", "src\/getRatings.js", "src\/addRatings.js", "src\/contentscripthulu.js" ], "matches": [ "https:\/\/*.hulu.com\/*" ] } ], "page_action": { "default_icon": { "16": "images\/meta\/icon16.png", "32": "images\/meta\/icon32.png", "48": "images\/meta\/icon48.png", "128": "images\/meta\/icon128.png" }, "default_title": "The Streaming Wizard" }, "permissions": [ "https:\/\/*.netflix.com\/*", "https:\/\/*.hulu.com\/*", "https:\/\/ajax.googleapis.com\/", "tabs" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "web_accessible_resources": [ "images\/imdb.png", "images\/rtRotten.png", "images\/rtFresh.png", "images\/rtCertifiedFresh.png", "images\/metacritic.png", "images\/oscar.png", "images\/goldenglobe.png" ] } |