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 с друзьями, чтобы легко установить расширения 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 |
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\/*" ] } ] } |