Prettify USACO

Get prettier, more readable USACO Solutions!

O que é Prettify USACO?

Prettify USACO é uma extensão do Chrome desenvolvida por Prettify USACO, e sua principal característica é "Get prettier, more readable USACO Solutions!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Prettify USACO

Baixe arquivos de extensão Prettify USACO 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 extension automatically adds code syntax highlighting to USACO solution pages, making them easier to read and understand. You can also choose whether you want it to be in dark (default), or light mode! It auto detects whether the solution code is in C++, Java, or Python and applies the appropriate highlighting. Enjoy!                    

Informações Básicas da Extensão

Nome Prettify USACO Prettify USACO
ID bkmonfipialhchjelomnlmmpbmhpgnnd
URL Oficial https://chromewebstore.google.com/detail/prettify-usaco/bkmonfipialhchjelomnlmmpbmhpgnnd
Descrição Get prettier, more readable USACO Solutions!
Tamanho do Arquivo 424 KB
Contagem de Instalações 109
Versão Atual 1.12
Última Atualização 2022-02-14
Data de Publicação 2022-02-08
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor Prettify USACO
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/PrettifyUSACO/PrettifyUSACO#readme
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Prettify USACO",
    "description": "Get prettier, more readable USACO Solutions!",
    "version": "1.12",
    "manifest_version": 3,
    "icons": {
        "128": "src\/images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/usaco.org\/*",
                "http:\/\/www.usaco.org\/*",
                "*:\/\/www.usaco.org\/*"
            ],
            "js": [
                "src\/contentScript.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "action": {
        "default_popup": "src\/popup\/popup.html",
        "default_title": "Prettify USACO"
    },
    "background": {
        "service_worker": "src\/background.js"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "prism\/*"
            ],
            "matches": [
                "http:\/\/usaco.org\/*",
                "http:\/\/www.usaco.org\/*",
                "*:\/\/www.usaco.org\/*"
            ]
        }
    ]
}