Where to Stream
Find out if a certain movie or TV show is available for streaming in your country.
Τι είναι το Where to Stream;
Το Where to Stream είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ioan.mosincat, και η κύρια λειτουργία του είναι "Find out if a certain movie or TV show is available for streaming in your country.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Where to Stream
Λήψη αρχείων επέκτασης Where to Stream σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
SETUP Chose your country, the streaming services of interest and some extra (optional) features (Notification popup, Similar movies and Rent & Buy options). HOW IT WORKS Go visit a movie's or a TV show's page on one of the following websites: IMDb, Rotten Tomatoes, Metacritic, Letterboxd, CineMagia, Crunchyroll, or MyAnimeList. A colored badge will be shown on the extension icon: - 🟩 - streaming found. - 🟨 - streaming found, but not on the streaming services you selected. - 🟥 - no streaming found in your country. In this case, similar movies/TV shows will be displayed, if that option was selected. If you selected the Notification popup in the Settings tab, a popup with the results will show up in the top right corner. WHERE IT WORKS There are currently 44 countries covered by the extension. Please check the dropdown in the Settings tab to see if your country is included. If you have any feedback or suggestion, please let us know. Credits: This product uses the TMDb API but is not endorsed or certified by TMDb. The source of the data for the streaming services is provided by JustWatch. The icon is made by Smashicons from www.flaticon.com.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Where to Stream |
ID | pcdbmbdecdnghnipgeafhalajkhkpghk |
Επίσημο URL | https://chromewebstore.google.com/detail/where-to-stream/pcdbmbdecdnghnipgeafhalajkhkpghk |
Περιγραφή | Find out if a certain movie or TV show is available for streaming in your country. |
Μέγεθος Αρχείου | 53.11 KB |
Αριθμός Εγκαταστάσεων | 515 |
Τρέχουσα Έκδοση | 1.3 |
Τελευταία Ενημέρωση | 2021-04-29 |
Ημερομηνία Δημοσίευσης | 2021-02-09 |
Αξιολόγηση | 4.67/5 Συνολικά 6 Αξιολογήσεις |
Προγραμματιστής | ioan.mosincat |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Where to Stream", "short_name": "WhereToStream", "version": "1.3", "description": "Find out if a certain movie or TV show is available for streaming in your country.", "content_scripts": [ { "matches": [ "https:\/\/www.imdb.com\/*", "https:\/\/www.metacritic.com\/*", "https:\/\/www.rottentomatoes.com\/*", "https:\/\/letterboxd.com\/*", "https:\/\/www.cinemagia.ro\/*", "https:\/\/www.crunchyroll.com\/*", "https:\/\/myanimelist.net\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_popup": "main.html", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "permissions": [ "activeTab", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "web_accessible_resources": [ "images\/*.png" ] } |