Prettify USACO

Get prettier, more readable USACO Solutions!

Cos'è Prettify USACO?

Prettify USACO è un'estensione di Chrome sviluppata da Prettify USACO, e la sua funzione principale è "Get prettier, more readable USACO Solutions!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Prettify USACO

Scarica i file di estensione Prettify USACO in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Prettify USACO Prettify USACO
ID bkmonfipialhchjelomnlmmpbmhpgnnd
URL Ufficiale https://chromewebstore.google.com/detail/prettify-usaco/bkmonfipialhchjelomnlmmpbmhpgnnd
Descrizione Get prettier, more readable USACO Solutions!
Dimensione del File 424 KB
Conteggio Installazioni 109
Versione Corrente 1.12
Ultimo Aggiornamento 2022-02-14
Data di Pubblicazione 2022-02-08
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore Prettify USACO
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/PrettifyUSACO/PrettifyUSACO#readme
Lingue Supportate 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\/*"
            ]
        }
    ]
}