CF static site enchancer
Enhances the static codeforces websites with additional features so that you get a complete environment during contests
Co je CF static site enchancer?
CF static site enchancer je rozšíření Chrome vyvinuté Ashutosh Nilesh Patkar, a jeho hlavní funkcí je „Enhances the static codeforces websites with additional features so that you get a complete environment during contests“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření CF static site enchancer
Stáhněte si soubory rozšíření CF static site enchancer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
A lot of people like appearing for codeforces contests on the static websites. It is fast and distraction free. But it doesn't have some of the key features that we need when participating in a contest. This extension aims towards enhancing the static (m1,m2,m3) codeforces websites with additional features so that you get a complete environment during contests Features include Previous version Submission count for the problems. Update adds new features like Copy button for copying input data to clipboard. Predicted rating change. Friends standings. Thanks to CF Predictor extension whose backend service is used to fetch the predicted rating change. Each feature is accessible separately so that the browser doesn't make unnecessary computations and you can use only the features that you want to use.
Základní Informace o Rozšíření
Název | |
ID | kephibooehcpbfddbnpgphdmpdmpkika |
Oficiální URL | https://chrome.google.com/webstore/detail/cf-static-site-enchancer/kephibooehcpbfddbnpgphdmpdmpkika |
Popis | Enhances the static codeforces websites with additional features so that you get a complete environment during contests |
Velikost souboru | 110 KB |
Počet instalací | 734 |
Aktuální Verze | 2.0.0 |
Poslední Aktualizace | 2021-07-27 |
Datum Vydání | 2020-07-21 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | Ashutosh Nilesh Patkar |
[email protected] | |
Typ Platby | free |
URL Stránky Nápovědy | https://github.com/Holmes7/CF-Static-Site-Enhancer |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CF static site enchancer", "version": "2.0.0", "description": "Enhances the static codeforces websites with additional features so that you get a complete environment during contests", "manifest_version": 3, "icons": { "48": "static\/icon48.png", "64": "static\/icon64.png", "128": "static\/icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/m1.codeforces.com\/contest\/*", "*:\/\/m2.codeforces.com\/contest\/*", "*:\/\/m3.codeforces.com\/contest\/*" ], "css": [ "tables.css" ], "js": [ "main.js" ] }, { "matches": [ "*:\/\/m1.codeforces.com\/contest\/*\/problem\/*", "*:\/\/m2.codeforces.com\/contest\/*\/problem\/*", "*:\/\/m3.codeforces.com\/contest\/*\/problem\/*" ], "js": [ "copy.js" ] } ], "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/codeforces.com\/*", "https:\/\/cf-predictor.herokuapp.com\/*" ] } |