Prettify USACO
Get prettier, more readable USACO Solutions!
Prettify USACO क्या है?
Prettify USACO Prettify USACO द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get prettier, more readable USACO Solutions!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Prettify USACO एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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\/*" ] } ] } |