Codeforces Solutions
A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…
Vad är Codeforces Solutions?
Codeforces Solutions är en Chrome-tillägg utvecklad av Navpreet Singh, och dess huvudfunktion är "A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…".
Tilläggsskärmbilder
Ladda ner Codeforces Solutions-förlängningens CRX-fil
Ladda ner Codeforces Solutions-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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! Grundläggande Information om Tillägg
| Namn | |
| ID | iegpelnggolflcmkmjnhmfhjlnfpbefj |
| Officiell webbadress | https://chromewebstore.google.com/detail/codeforces-solutions/iegpelnggolflcmkmjnhmfhjlnfpbefj |
| Beskrivning | A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any… |
| Filstorlek | 35.71 KB |
| Antal Installationer | 443 |
| Aktuell Version | 0.3 |
| Senast Uppdaterad | 2023-06-22 |
| Publiceringsdatum | 2023-06-20 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | Navpreet Singh |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
}
} | |