Prettify USACO

Get prettier, more readable USACO Solutions!

Prettify USACO là gì?

Prettify USACO là một tiện ích mở rộng Chrome được phát triển bởi Prettify USACO, và tính năng chính của nó là "Get prettier, more readable USACO Solutions!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Prettify USACO

Tải xuống các tệp mở rộng Prettify USACO dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Prettify USACO Prettify USACO
ID bkmonfipialhchjelomnlmmpbmhpgnnd
URL Chính Thức https://chromewebstore.google.com/detail/prettify-usaco/bkmonfipialhchjelomnlmmpbmhpgnnd
Mô tả Get prettier, more readable USACO Solutions!
Kích Thước Tệp 424 KB
Số Lần Cài Đặt 109
Phiên Bản Hiện Tại 1.12
Cập Nhật Lần Cuối 2022-02-14
Ngày Phát Hành 2022-02-08
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Prettify USACO
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/PrettifyUSACO/PrettifyUSACO#readme
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}