Letterboxd Top 2000

Shows the ranking of each of the top 2000 highest rated movies on their respective page.

O que é Letterboxd Top 2000?

Letterboxd Top 2000 é uma extensão do Chrome desenvolvida por koenhagen, e sua principal característica é "Shows the ranking of each of the top 2000 highest rated movies on their respective page.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Letterboxd Top 2000

Baixe arquivos de extensão Letterboxd Top 2000 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

                        When a movie ranks among the 2000 highest rated movies according to Letterboxd, a golden crown icon will show below the poster together with the movie's rank. This extends the top 250 that is normally only shown.

The extension also adds a fire icon to movies that are part of the top 2000 most popular movies according to Letterboxd.

I am not a Letterboxd developer or associated with them in any way.                    

Informações Básicas da Extensão

Nome Letterboxd Top 2000 Letterboxd Top 2000
ID akajmboonlckanooginhfnpafjjnimko
URL Oficial https://chromewebstore.google.com/detail/letterboxd-top-2000/akajmboonlckanooginhfnpafjjnimko
Descrição Shows the ranking of each of the top 2000 highest rated movies on their respective page.
Tamanho do Arquivo 8.67 KB
Contagem de Instalações 502
Versão Atual 2.1
Última Atualização 2021-12-25
Data de Publicação 2021-06-07
Classificação 5.00/5 Total de 7 Avaliações
Desenvolvedor koenhagen
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Letterboxd Top 2000",
    "description": "Shows the ranking of each of the top 2000 highest rated movies on their respective page.",
    "version": "2.1",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/letterboxd.com\/film\/*",
                "http:\/\/letterboxd.com\/film\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "lb16.png",
        "48": "lb48.png",
        "128": "lb128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "fire.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}