Awards List on Letterboxd
This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members.
Awards List on Letterboxdとは何ですか?
Awards List on Letterboxdはimdb2letterboxdによって開発されたChromeの拡張機能で、その主な機能は「This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members.」です。
拡張機能のスクリーンショット
Awards List on Letterboxd拡張機能のCRXファイルをダウンロード
Awards List on Letterboxd拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members. UPDATE April 2023 - Fixed for new layout changes on IMDb on the awards page - Best film icon next to the film title now includes other categories such as International Film, Documentary Feature and short film categories
拡張機能の基本情報
名前 | Awards List on Letterboxd |
ID | nkpchhjoclfpimjoceongdiaaldgcemh |
公式URL | https://chromewebstore.google.com/detail/awards-list-on-letterboxd/nkpchhjoclfpimjoceongdiaaldgcemh |
説明 | This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members. |
ファイルサイズ | 93.84 KB |
インストール数 | 211 |
現在のバージョン | 0.5 |
最終更新日 | 2023-04-28 |
公開日 | 2023-03-13 |
評価 | 4.00/5 合計 2 レビュー |
開発者 | imdb2letterboxd |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Awards List on Letterboxd", "version": "0.5", "description": "This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members.", "icons": { "48": "icons\/48.png" }, "content_scripts": [ { "matches": [ "https:\/\/letterboxd.com\/film\/*" ], "js": [ "js\/jquery-3.3.1.min.js", "js\/xss.js", "js\/script.js" ], "css": [ "css\/styles.css" ], "run_at": "document_end" }, { "matches": [ "https:\/\/www.imdb.com\/*" ], "js": [ "js\/jquery-3.3.1.min.js", "js\/xss.js", "js\/script.js" ], "css": [ "css\/styles.css" ], "run_at": "document_end" } ], "background": { "service_worker": "js\/background.js" }, "web_accessible_resources": [ { "resources": [ "js\/reload-letterboxd.js", "svg\/bafta_award.svg", "svg\/generic_film_award.svg", "svg\/oscar_awards.svg", "svg\/oscar_awards_nom.svg", "svg\/golden_globes.svg" ], "matches": [ "https:\/\/letterboxd.com\/*" ] } ] } |