Prettify USACO

Get prettier, more readable USACO Solutions!

Prettify USACO란 무엇입니까?

Prettify USACO은(는) Prettify USACO에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get prettier, more readable USACO Solutions!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Prettify USACO 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 Prettify USACO Prettify USACO
ID bkmonfipialhchjelomnlmmpbmhpgnnd
공식 URL https://chromewebstore.google.com/detail/prettify-usaco/bkmonfipialhchjelomnlmmpbmhpgnnd
설명 Get prettier, more readable USACO Solutions!
파일 크기 424 KB
설치 횟수 109
현재 버전 1.12
최근 업데이트 2022-02-14
출시 날짜 2022-02-08
평점 5.00/5 총 5 개의 평점
개발자 Prettify USACO
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/PrettifyUSACO/PrettifyUSACO#readme
지원되는 언어 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\/*"
            ]
        }
    ]
}