More Ratings on Letterboxd
See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd
Co to jest More Ratings on Letterboxd?
More Ratings on Letterboxd to rozszerzenie Chrome opracowane przez UofT Student 2020, a jego główną funkcją jest „See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia More Ratings on Letterboxd
Pobierz pliki rozszerzeń More Ratings on Letterboxd 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
This chrome extension will fetch and embed IMDB, Rotten Tomatoes, and Metacritic ratings right onto the Letterboxd film page. You can also show and hide ratings right on the chrome extension. Source code is at https://github.com/EKarton/More-Ratings-on-Letterboxd. Open contributions to the source code are welcome. Thank you!
Podstawowe informacje o rozszerzeniu
Nazwa | More Ratings on Letterboxd |
ID | daohigojkjlijcphfhelkcepldnenike |
Oficjalny URL | https://chromewebstore.google.com/detail/more-ratings-on-letterbox/daohigojkjlijcphfhelkcepldnenike |
Opis | See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd |
Rozmiar pliku | 129 KB |
Liczba instalacji | 266 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2021-09-02 |
Data Publikacji | 2021-09-02 |
Ocena | 5.00/5 Łącznie 7 Oceny |
Deweloper | UofT Student 2020 |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/EKarton/More-Ratings-on-Letterboxd |
Adres URL Strony Pomocy | https://github.com/EKarton/More-Ratings-on-Letterboxd/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "More Ratings on Letterboxd", "description": "See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd", "version": "1.0.0", "manifest_version": 3, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/letterboxd.com\/film\/*" ], "css": [ "content-scripts\/styles.css" ], "js": [ "content-scripts\/index.js" ] } ], "action": { "default_title": "More Ratings on Letterboxd", "default_popup": "popup\/index.html", "default_icon": { "16": "\/assets\/icons\/icon16.png", "32": "\/assets\/icons\/icon32.png", "48": "\/assets\/icons\/icon48.png", "128": "\/assets\/icons\/icon128.png" } }, "icons": { "16": "\/assets\/icons\/icon16.png", "32": "\/assets\/icons\/icon32.png", "48": "\/assets\/icons\/icon48.png", "128": "\/assets\/icons\/icon128.png" } } |