CodewarsKatana
This extension brings small improvements to codewars.com.
Qu'est-ce que CodewarsKatana ?
CodewarsKatana est une extension Chrome développée par http://www.odv.lv/, et sa fonction principale est "This extension brings small improvements to codewars.com.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension CodewarsKatana
Téléchargez les fichiers d'extension CodewarsKatana au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | CodewarsKatana |
ID | egkiehpelenbjlfdhcjhbmcdcachcbob |
URL Officiel | https://chromewebstore.google.com/detail/codewarskatana/egkiehpelenbjlfdhcjhbmcdcachcbob |
Description | This extension brings small improvements to codewars.com. |
Taille du Fichier | 5.05 KB |
Nombre d'Installations | 72 |
Version Actuelle | 0.1.2 |
Dernière Mise à Jour | 2020-11-19 |
Date de Publication | 2020-04-10 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | http://www.odv.lv/ |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |