Codeforces++
Codeforces extension pack
Wat is Codeforces++?
Codeforces++ is een Chrome-extensie ontwikkeld door Leonardo Riether, en de belangrijkste functie is "Codeforces extension pack".
Extensie Screenshots
Download het CRX-bestand van de extensie Codeforces++
Download Codeforces++-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | ehbcfilpfnlahficlpimomapmbccieoi |
| Officiële URL | https://chromewebstore.google.com/detail/codeforces++/ehbcfilpfnlahficlpimomapmbccieoi |
| Beschrijving | Codeforces extension pack |
| Bestandsgrootte | 28.61 KB |
| Aantal Installaties | 3,692 |
| Huidige Versie | 2.4.0 |
| Laatst Bijgewerkt | 2023-02-22 |
| Publicatiedatum | 2020-05-20 |
| Beoordeling | 4.82/5 Totaal 17 Beoordelingen |
| Ontwikkelaar | Leonardo Riether |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/LeoRiether/CodeforcesPP |
| Help Pagina-URL | https://github.com/LeoRiether/CodeforcesPP/issues/ |
| Ondersteunde Talen | 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"
}
} | |