More Ratings on Letterboxd
See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd
More Ratings on Letterboxdとは何ですか?
More Ratings on LetterboxdはUofT Student 2020によって開発されたChromeの拡張機能で、その主な機能は「See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd」です。
拡張機能のスクリーンショット
More Ratings on Letterboxd拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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" } } |