CodewarsKatana

This extension brings small improvements to codewars.com.

CodewarsKatana là gì?

CodewarsKatana là một tiện ích mở rộng Chrome được phát triển bởi http://www.odv.lv/, và tính năng chính của nó là "This extension brings small improvements to codewars.com.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng CodewarsKatana

Tải xuống các tệp mở rộng CodewarsKatana dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CodewarsKatana CodewarsKatana
ID egkiehpelenbjlfdhcjhbmcdcachcbob
URL Chính Thức https://chromewebstore.google.com/detail/codewarskatana/egkiehpelenbjlfdhcjhbmcdcachcbob
Mô tả This extension brings small improvements to codewars.com.
Kích Thước Tệp 5.05 KB
Số Lần Cài Đặt 72
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2020-11-19
Ngày Phát Hành 2020-04-10
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển http://www.odv.lv/
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}