Prettify USACO

Get prettier, more readable USACO Solutions!

What is Prettify USACO?

Prettify USACO is a Chrome extension developed by Prettify USACO, and its main feature is "Get prettier, more readable USACO Solutions!".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Prettify USACO Extension CRX File

Download Prettify USACO extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Prettify USACO Prettify USACO
ID bkmonfipialhchjelomnlmmpbmhpgnnd
Official URL https://chromewebstore.google.com/detail/prettify-usaco/bkmonfipialhchjelomnlmmpbmhpgnnd
Description Get prettier, more readable USACO Solutions!
File Size 424 KB
Installation Count 109
Current Version 1.12
Last Updated 2022-02-14
Publish Date 2022-02-08
Rating 5.00/5 Total 5 Ratings
Developer Prettify USACO
Email [email protected]
Payment Type free
Extension Website https://github.com/PrettifyUSACO/PrettifyUSACO#readme
Supported Languages 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\/*"
            ]
        }
    ]
}