More Ratings on Letterboxd
See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd
Что такое More Ratings on Letterboxd?
More Ratings on Letterboxd - это расширение Chrome, разработанное UofT Student 2020, и его основная функция - "See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd".
Снимки экрана расширения
Скачать файл CRX расширения More Ratings on Letterboxd
Скачайте файлы расширений More Ratings on Letterboxd в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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!
Основная информация о расширении
Название | More Ratings on Letterboxd |
ID | daohigojkjlijcphfhelkcepldnenike |
Официальный URL | https://chromewebstore.google.com/detail/more-ratings-on-letterbox/daohigojkjlijcphfhelkcepldnenike |
Описание | See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd |
Размер файла | 129 KB |
Количество установок | 266 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2021-09-02 |
Дата публикации | 2021-09-02 |
Рейтинг | 5.00/5 Всего 7 оценок |
Разработчик | UofT Student 2020 |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/EKarton/More-Ratings-on-Letterboxd |
URL страницы помощи | https://github.com/EKarton/More-Ratings-on-Letterboxd/issues |
Поддерживаемые языки | 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" } } |