Overratd
A Chrome Extension for Letterboxd which adds rating histograms to public lists based on the author's rating
Τι είναι το Overratd;
Το Overratd είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον garretlowe, και η κύρια λειτουργία του είναι "A Chrome Extension for Letterboxd which adds rating histograms to public lists based on the author's rating".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Overratd
Λήψη αρχείων επέκτασης Overratd σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Overratd adds histograms to Letterboxd lists which display the list owner's ratings for movies in the list. Currently, the extension is limited to 100 movies at a time. This is because it reads the list of movies from the current page and Letterboxd can only display up to 100 movies per list page. Additionally, the tooltips which display when hovering over bars do not currently work as you would expect them to based on the profile histograms. Overratd is licensed under GPL-3.0 and is fully open-source: https://github.com/garretlowe/overratd
Βασικές Πληροφορίες Επέκτασης
Όνομα | Overratd |
ID | lllkjhpcabokchmdinbmhgmnnkgoehhf |
Επίσημο URL | https://chromewebstore.google.com/detail/overratd/lllkjhpcabokchmdinbmhgmnnkgoehhf |
Περιγραφή | A Chrome Extension for Letterboxd which adds rating histograms to public lists based on the author's rating |
Μέγεθος Αρχείου | 12.16 KB |
Αριθμός Εγκαταστάσεων | 56 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2022-08-27 |
Ημερομηνία Δημοσίευσης | 2022-08-26 |
Προγραμματιστής | garretlowe |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/garretlowe/overratd |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Overratd", "author": "Garret Lowe", "description": "A Chrome Extension for Letterboxd which adds rating histograms to public lists based on the author's rating", "version": "1.0", "manifest_version": 3, "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/letterboxd.com\/*\/list\/*\/" ], "js": [ "overratd.js" ] } ], "icons": { "16": "\/images\/overratd16.png", "32": "\/images\/overratd32.png", "48": "\/images\/overratd48.png", "128": "\/images\/overratd128.png" } } |