CodewarsKatana

This extension brings small improvements to codewars.com.

What is CodewarsKatana?

CodewarsKatana is a Chrome extension developed by http://www.odv.lv/, and its main feature is "This extension brings small improvements to codewars.com.".

Extension Screenshots

screenshot

Download CodewarsKatana Extension CRX File

Download CodewarsKatana extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name CodewarsKatana CodewarsKatana
ID egkiehpelenbjlfdhcjhbmcdcachcbob
Official URL https://chromewebstore.google.com/detail/codewarskatana/egkiehpelenbjlfdhcjhbmcdcachcbob
Description This extension brings small improvements to codewars.com.
File Size 5.05 KB
Installation Count 72
Current Version 0.1.2
Last Updated 2020-11-19
Publish Date 2020-04-10
Rating 5.00/5 Total 4 Ratings
Developer http://www.odv.lv/
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}