CF ON STEROIDS
It enhances the Codeforces user profile according to selected options locally
Cos'è CF ON STEROIDS?
CF ON STEROIDS è un'estensione di Chrome sviluppata da iManageDs, e la sua funzione principale è "It enhances the Codeforces user profile according to selected options locally".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CF ON STEROIDS
Scarica i file di estensione CF ON STEROIDS in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
It enables user to change their profile rating, contribution and roles in Codeforces.
Informazioni di Base sull'Estensione
Nome | CF ON STEROIDS |
ID | gnpecblcobafkekjmocbbeabephkgjpj |
URL Ufficiale | https://chromewebstore.google.com/detail/cf-on-steroids/gnpecblcobafkekjmocbbeabephkgjpj |
Descrizione | It enhances the Codeforces user profile according to selected options locally |
Dimensione del File | 44.89 KB |
Conteggio Installazioni | 208 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2020-12-12 |
Data di Pubblicazione | 2020-12-11 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | iManageDs |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CF ON STEROIDS", "description": "It enhances the Codeforces user profile according to selected options locally", "version": "1.0.0", "browser_action": { "default_popup": "steroids.html", "default_icon": "ico64.png" }, "icons": { "16": "ico16.png", "48": "ico48.png", "64": "ico64.png", "128": "ico128.png", "256": "ico256.png", "512": "ico512.png" }, "content_scripts": [ { "matches": [ "http:\/\/codeforces.com\/*", "https:\/\/codeforces.com\/*" ], "js": [ "script.js" ], "all_frames": true } ], "permissions": [ "tabs", "storage" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+F", "mac": "MacCtrl+Shift+F" }, "description": "Opens steroids.html" } }, "manifest_version": 2 } |