Codeforces++
Codeforces extension pack
Co to jest Codeforces++?
Codeforces++ to rozszerzenie Chrome opracowane przez Leonardo Riether, a jego główną funkcją jest „Codeforces extension pack”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Codeforces++
Pobierz pliki rozszerzeń Codeforces++ 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
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ehbcfilpfnlahficlpimomapmbccieoi |
| Oficjalny URL | https://chromewebstore.google.com/detail/codeforces++/ehbcfilpfnlahficlpimomapmbccieoi |
| Opis | Codeforces extension pack |
| Rozmiar pliku | 28.61 KB |
| Liczba instalacji | 3,692 |
| Aktualna Wersja | 2.4.0 |
| Ostatnia Aktualizacja | 2023-02-22 |
| Data Publikacji | 2020-05-20 |
| Ocena | 4.82/5 Łącznie 17 Oceny |
| Deweloper | Leonardo Riether |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/LeoRiether/CodeforcesPP |
| Adres URL Strony Pomocy | https://github.com/LeoRiether/CodeforcesPP/issues/ |
| Obsługiwane Języki | 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"
}
} | |