Overratd
A Chrome Extension for Letterboxd which adds rating histograms to public lists based on the author's rating
Co to jest Overratd?
Overratd to rozszerzenie Chrome opracowane przez garretlowe, a jego główną funkcją jest „A Chrome Extension for Letterboxd which adds rating histograms to public lists based on the author's rating”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Overratd
Pobierz pliki rozszerzeń Overratd w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Overratd |
ID | lllkjhpcabokchmdinbmhgmnnkgoehhf |
Oficjalny URL | https://chromewebstore.google.com/detail/overratd/lllkjhpcabokchmdinbmhgmnnkgoehhf |
Opis | A Chrome Extension for Letterboxd which adds rating histograms to public lists based on the author's rating |
Rozmiar pliku | 12.16 KB |
Liczba instalacji | 56 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2022-08-27 |
Data Publikacji | 2022-08-26 |
Deweloper | garretlowe |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/garretlowe/overratd |
Obsługiwane Języki | 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" } } |