Codeforces Solutions
A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…
Co to jest Codeforces Solutions?
Codeforces Solutions to rozszerzenie Chrome opracowane przez Navpreet Singh, a jego główną funkcją jest „A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Codeforces Solutions
Pobierz pliki rozszerzeń Codeforces Solutions w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | Codeforces Solutions |
ID | iegpelnggolflcmkmjnhmfhjlnfpbefj |
Oficjalny URL | https://chromewebstore.google.com/detail/codeforces-solutions/iegpelnggolflcmkmjnhmfhjlnfpbefj |
Opis | A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any… |
Rozmiar pliku | 35.71 KB |
Liczba instalacji | 443 |
Aktualna Wersja | 0.3 |
Ostatnia Aktualizacja | 2023-06-22 |
Data Publikacji | 2023-06-20 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Navpreet Singh |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |