More Ratings on Letterboxd
See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd
What is More Ratings on Letterboxd?
More Ratings on Letterboxd is a Chrome extension developed by UofT Student 2020, and its main feature is "See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd".
Extension Screenshots
Download More Ratings on Letterboxd Extension CRX File
Download More Ratings on Letterboxd extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | More Ratings on Letterboxd |
ID | daohigojkjlijcphfhelkcepldnenike |
Official URL | https://chromewebstore.google.com/detail/more-ratings-on-letterbox/daohigojkjlijcphfhelkcepldnenike |
Description | See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd |
File Size | 129 KB |
Installation Count | 266 |
Current Version | 1.0.0 |
Last Updated | 2021-09-02 |
Publish Date | 2021-09-02 |
Rating | 5.00/5 Total 7 Ratings |
Developer | UofT Student 2020 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/EKarton/More-Ratings-on-Letterboxd |
Help Page URL | https://github.com/EKarton/More-Ratings-on-Letterboxd/issues |
Supported Languages | 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" } } |