CodewarsKatana
This extension brings small improvements to codewars.com.
Cos'è CodewarsKatana?
CodewarsKatana è un'estensione di Chrome sviluppata da http://www.odv.lv/, e la sua funzione principale è "This extension brings small improvements to codewars.com.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CodewarsKatana
Scarica i file di estensione CodewarsKatana 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
This extension allows you to easily identify solved and unsolved codewars.com exercises by replacing their background. Successfully completed katas have a green background color while the ones that haven't been solved yet have a red background color. Besides making the status of each exercise more visible, it also blocks all the ads displayed on CodeWars.
Informazioni di Base sull'Estensione
Nome | CodewarsKatana |
ID | egkiehpelenbjlfdhcjhbmcdcachcbob |
URL Ufficiale | https://chromewebstore.google.com/detail/codewarskatana/egkiehpelenbjlfdhcjhbmcdcachcbob |
Descrizione | This extension brings small improvements to codewars.com. |
Dimensione del File | 5.05 KB |
Conteggio Installazioni | 72 |
Versione Corrente | 0.1.2 |
Ultimo Aggiornamento | 2020-11-19 |
Data di Pubblicazione | 2020-04-10 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | http://www.odv.lv/ |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CodewarsKatana", "description": "This extension brings small improvements to codewars.com.", "version": "0.1.2", "browser_action": { "default_icon": "\/images\/icon.png" }, "icons": { "64": "\/images\/icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.codewars.com\/*", "http:\/\/codewars.com\/*" ], "js": [ "index.js" ], "css": [ "\/css\/styles.css" ] } ] } |