Prettify USACO

Get prettier, more readable USACO Solutions!

Wat is Prettify USACO?

Prettify USACO is een Chrome-extensie ontwikkeld door Prettify USACO, en de belangrijkste functie is "Get prettier, more readable USACO Solutions!".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Prettify USACO

Download Prettify USACO-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Prettify USACO Prettify USACO
ID bkmonfipialhchjelomnlmmpbmhpgnnd
Officiële URL https://chromewebstore.google.com/detail/prettify-usaco/bkmonfipialhchjelomnlmmpbmhpgnnd
Beschrijving Get prettier, more readable USACO Solutions!
Bestandsgrootte 424 KB
Aantal Installaties 109
Huidige Versie 1.12
Laatst Bijgewerkt 2022-02-14
Publicatiedatum 2022-02-08
Beoordeling 5.00/5 Totaal 5 Beoordelingen
Ontwikkelaar Prettify USACO
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/PrettifyUSACO/PrettifyUSACO#readme
Ondersteunde Talen 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\/*"
            ]
        }
    ]
}