Prettify USACO
Get prettier, more readable USACO Solutions!
ما هو Prettify USACO؟
Prettify USACO هو إضافة Chrome تم تطويرها بواسطة Prettify USACO، والميزة الرئيسية لها هي "Get prettier, more readable USACO Solutions!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Prettify USACO
قم بتنزيل ملفات الامتداد Prettify USACO بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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\/*" ] } ] } |