Codeforces++
Codeforces extension pack
Was ist Codeforces++?
Codeforces++ ist eine Chrome-Erweiterung, die von Leonardo Riether entwickelt wurde, und ihr Hauptmerkmal ist "Codeforces extension pack".
Erweiterungsscreenshots
Codeforces++-Erweiterungs-CRX-Datei herunterladen
Laden Sie Codeforces++-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ehbcfilpfnlahficlpimomapmbccieoi |
| Offizielle URL | https://chromewebstore.google.com/detail/codeforces++/ehbcfilpfnlahficlpimomapmbccieoi |
| Beschreibung | Codeforces extension pack |
| Dateigröße | 28.61 KB |
| Installationsanzahl | 3,692 |
| Aktuelle Version | 2.4.0 |
| Letztes Update | 2023-02-22 |
| Veröffentlichungsdatum | 2020-05-20 |
| Bewertung | 4.82/5 Insgesamt 17 Bewertungen |
| Entwickler | Leonardo Riether |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/LeoRiether/CodeforcesPP |
| Hilfeseite URL | https://github.com/LeoRiether/CodeforcesPP/issues/ |
| Unterstützte Sprachen | 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"
}
} | |