Prettify USACO

Get prettier, more readable USACO Solutions!

Prettify USACOคืออะไร?

Prettify USACO เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Prettify USACO และคุณลักษณะหลักของมันคือ "Get prettier, more readable USACO Solutions!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Prettify USACO

ดาวน์โหลดไฟล์ส่วนขยาย Prettify USACO ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/*"
            ]
        }
    ]
}