Codeforces++
Codeforces extension pack
Vad är Codeforces++?
Codeforces++ är en Chrome-tillägg utvecklad av Leonardo Riether, och dess huvudfunktion är "Codeforces extension pack".
Tilläggsskärmbilder
Ladda ner Codeforces++-förlängningens CRX-fil
Ladda ner Codeforces++-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
Ever wanted Codeforces to have handy shortcuts, auto-updating standings, problem tags that you can hide/show on demand, better site navigation, a dark theme, or all of the above? These and many more features are available in Codeforces++! This extension is open-source and hosted at GitHub https://github.com/LeoRiether/CodeforcesPP Grundläggande Information om Tillägg
| Namn | |
| ID | ehbcfilpfnlahficlpimomapmbccieoi |
| Officiell webbadress | https://chromewebstore.google.com/detail/codeforces++/ehbcfilpfnlahficlpimomapmbccieoi |
| Beskrivning | Codeforces extension pack |
| Filstorlek | 28.61 KB |
| Antal Installationer | 3,692 |
| Aktuell Version | 2.4.0 |
| Senast Uppdaterad | 2023-02-22 |
| Publiceringsdatum | 2020-05-20 |
| Betyg | 4.82/5 Totalt 17 Betyg |
| Utvecklare | Leonardo Riether |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/LeoRiether/CodeforcesPP |
| Hjälpsida URL | https://github.com/LeoRiether/CodeforcesPP/issues/ |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Codeforces++",
"description": "Codeforces extension pack",
"version": "2.4.0",
"manifest_version": 2,
"permissions": [
"storage",
"*:\/\/codeforces.com\/*",
"http:\/\/fonts.googleapis.com\/*",
"https:\/\/fonts.googleapis.com\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/codeforces.com\/*"
],
"js": [
"browser-polyfill.min.js",
"contentScript.js"
],
"css": [
"common.css"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"*.js"
],
"background": {
"persistent": false,
"scripts": [
"browser-polyfill.min.js",
"background.js"
]
},
"browser_action": {
"default_popup": "popup.html",
"default_title": "Codeforces++"
},
"icons": {
"16": "icons\/16x16.png",
"32": "icons\/32x32.png",
"48": "icons\/48x48.png",
"128": "icons\/128x128.png"
}
} | |