Awards List on Letterboxd
This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members.
O que é Awards List on Letterboxd?
Awards List on Letterboxd é uma extensão do Chrome desenvolvida por imdb2letterboxd, e sua principal característica é "This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Awards List on Letterboxd
Baixe arquivos de extensão Awards List on Letterboxd no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Awards List on Letterboxd |
ID | nkpchhjoclfpimjoceongdiaaldgcemh |
URL Oficial | https://chromewebstore.google.com/detail/awards-list-on-letterboxd/nkpchhjoclfpimjoceongdiaaldgcemh |
Descrição | This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members. |
Tamanho do Arquivo | 93.84 KB |
Contagem de Instalações | 211 |
Versão Atual | 0.5 |
Última Atualização | 2023-04-28 |
Data de Publicação | 2023-03-13 |
Classificação | 4.00/5 Total de 2 Avaliações |
Desenvolvedor | imdb2letterboxd |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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\/*" ] } ] } |