Codeforces Solutions
A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…
Что такое Codeforces Solutions?
Codeforces Solutions - это расширение Chrome, разработанное Navpreet Singh, и его основная функция - "A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…".
Снимки экрана расширения
Скачать файл CRX расширения Codeforces Solutions
Скачайте файлы расширений Codeforces Solutions в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any codeforces problem and click on the extension. You get all submitted solutions!
Основная информация о расширении
Название | Codeforces Solutions |
ID | iegpelnggolflcmkmjnhmfhjlnfpbefj |
Официальный URL | https://chromewebstore.google.com/detail/codeforces-solutions/iegpelnggolflcmkmjnhmfhjlnfpbefj |
Описание | A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any… |
Размер файла | 35.71 KB |
Количество установок | 443 |
Текущая Версия | 0.3 |
Последнее Обновление | 2023-06-22 |
Дата публикации | 2023-06-20 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Navpreet Singh |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Codeforces Solutions", "version": "0.3", "content_scripts": [ { "matches": [ "https:\/\/codeforces.com\/*", "http:\/\/codeforces.com\/*" ], "js": [ "jquery-3.5.0.min.js", "content.js" ] } ], "action": { "default_icon": "icon.png" }, "background": { "service_worker": "background.js" } } |