Letterboxd Rotten Tomatoes Addon
Adds Rotten Tomatoes features to Letterboxd.com
Τι είναι το Letterboxd Rotten Tomatoes Addon;
Το Letterboxd Rotten Tomatoes Addon είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον WilliamWelsh, και η κύρια λειτουργία του είναι "Adds Rotten Tomatoes features to Letterboxd.com".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Letterboxd Rotten Tomatoes Addon
Λήψη αρχείων επέκτασης Letterboxd Rotten Tomatoes Addon σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension will offer a button on Letterboxd film pages that directs you to the Rotten Tomatoes equivalent. It also shows the score, and icon, under the title on film pages.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Letterboxd Rotten Tomatoes Addon |
ID | gbagfhlcandjadfocmenciejcgncjmfd |
Επίσημο URL | https://chromewebstore.google.com/detail/letterboxd-rotten-tomatoe/gbagfhlcandjadfocmenciejcgncjmfd |
Περιγραφή | Adds Rotten Tomatoes features to Letterboxd.com |
Μέγεθος Αρχείου | 22.73 KB |
Αριθμός Εγκαταστάσεων | 283 |
Τρέχουσα Έκδοση | 1.9 |
Τελευταία Ενημέρωση | 2019-01-22 |
Ημερομηνία Δημοσίευσης | 2019-01-21 |
Αξιολόγηση | 3.60/5 Συνολικά 10 Αξιολογήσεις |
Προγραμματιστής | WilliamWelsh |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/WilliamWelsh/Letterboxd-Rotten-Tomatoes-Addon |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/WilliamWelsh/Letterboxd-Rotten-Tomatoes-Addon |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Letterboxd Rotten Tomatoes Addon", "version": "1.9", "description": "Adds Rotten Tomatoes features to Letterboxd.com", "permissions": [ "https:\/\/www.omdbapi.com\/*", "https:\/\/www.rottentomatoes.com\/m\/*" ], "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/letterboxd.com\/film\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |