CodewarsKatana

This extension brings small improvements to codewars.com.

Wat is CodewarsKatana?

CodewarsKatana is een Chrome-extensie ontwikkeld door http://www.odv.lv/, en de belangrijkste functie is "This extension brings small improvements to codewars.com.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie CodewarsKatana

Download CodewarsKatana-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam CodewarsKatana CodewarsKatana
ID egkiehpelenbjlfdhcjhbmcdcachcbob
Officiële URL https://chromewebstore.google.com/detail/codewarskatana/egkiehpelenbjlfdhcjhbmcdcachcbob
Beschrijving This extension brings small improvements to codewars.com.
Bestandsgrootte 5.05 KB
Aantal Installaties 72
Huidige Versie 0.1.2
Laatst Bijgewerkt 2020-11-19
Publicatiedatum 2020-04-10
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar http://www.odv.lv/
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}