Awards List on Letterboxd
This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members.
Qu'est-ce que Awards List on Letterboxd ?
Awards List on Letterboxd est une extension Chrome développée par imdb2letterboxd, et sa fonction principale est "This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Awards List on Letterboxd
Téléchargez les fichiers d'extension Awards List on Letterboxd au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Awards List on Letterboxd |
ID | nkpchhjoclfpimjoceongdiaaldgcemh |
URL Officiel | https://chromewebstore.google.com/detail/awards-list-on-letterboxd/nkpchhjoclfpimjoceongdiaaldgcemh |
Description | This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members. |
Taille du Fichier | 93.84 KB |
Nombre d'Installations | 211 |
Version Actuelle | 0.5 |
Dernière Mise à Jour | 2023-04-28 |
Date de Publication | 2023-03-13 |
Évaluation | 4.00/5 Total 2 Évaluations |
Développeur | imdb2letterboxd |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } ] } |