CodewarsKatana

This extension brings small improvements to codewars.com.

Co to jest CodewarsKatana?

CodewarsKatana to rozszerzenie Chrome opracowane przez http://www.odv.lv/, a jego główną funkcją jest „This extension brings small improvements to codewars.com.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia CodewarsKatana

Pobierz pliki rozszerzeń CodewarsKatana w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa CodewarsKatana CodewarsKatana
ID egkiehpelenbjlfdhcjhbmcdcachcbob
Oficjalny URL https://chromewebstore.google.com/detail/codewarskatana/egkiehpelenbjlfdhcjhbmcdcachcbob
Opis This extension brings small improvements to codewars.com.
Rozmiar pliku 5.05 KB
Liczba instalacji 72
Aktualna Wersja 0.1.2
Ostatnia Aktualizacja 2020-11-19
Data Publikacji 2020-04-10
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper http://www.odv.lv/
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}