CF-Predictor
This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.
Co to jest CF-Predictor?
CF-Predictor to rozszerzenie Chrome opracowane przez Wsl_F, a jego główną funkcją jest „This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia CF-Predictor
Pobierz pliki rozszerzeń CF-Predictor 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
A huge number of your nerve cells die every time when you wait for a rating update on Codeforces. Stop this! From now you could use this extension, it partly modifies the contest standings page and shows approximate rating changes for every contestant. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ocfloejijfhhkkdmheodbaanephbnfhn |
| Oficjalny URL | https://chromewebstore.google.com/detail/cf-predictor/ocfloejijfhhkkdmheodbaanephbnfhn |
| Opis | This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest. |
| Rozmiar pliku | 84.96 KB |
| Liczba instalacji | 51,012 |
| Aktualna Wersja | 1.3.2 |
| Ostatnia Aktualizacja | 2022-11-28 |
| Data Publikacji | 2020-06-16 |
| Ocena | 4.53/5 Łącznie 146 Oceny |
| Deweloper | Wsl_F |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://cf-predictor.wasylf.xyz/ |
| Adres URL Strony Pomocy | https://codeforces.com/blog/entry/50411?locale=en |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "CF-Predictor",
"short_name": "CF-Predictor",
"version": "1.3.2",
"description": "This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.",
"manifest_version": 3,
"icons": {
"48": "static\/icon48.png",
"64": "static\/icon64.png",
"128": "static\/icon128.png"
},
"action": {
"default_icon": {
"48": "static\/icon48.png",
"64": "static\/icon64.png",
"128": "static\/icon128.png"
},
"default_title": "CF-Predictor",
"default_popup": "popup.html"
},
"host_permissions": [
"https:\/\/cf-predictor.wasylf.xyz\/"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"js": [
"third_party\/jquery.js",
"showDeltas.js"
],
"matches": [
"http:\/\/codeforces.com\/contest\/*\/standings*",
"https:\/\/codeforces.com\/contest\/*\/standings*"
]
}
]
} | |