CodewarsKatana

This extension brings small improvements to codewars.com.

CodewarsKatanaคืออะไร?

CodewarsKatana เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://www.odv.lv/ และคุณลักษณะหลักของมันคือ "This extension brings small improvements to codewars.com."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CodewarsKatana

ดาวน์โหลดไฟล์ส่วนขยาย CodewarsKatana ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ CodewarsKatana CodewarsKatana
ID egkiehpelenbjlfdhcjhbmcdcachcbob
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/codewarskatana/egkiehpelenbjlfdhcjhbmcdcachcbob
คำอธิบาย This extension brings small improvements to codewars.com.
ขนาดไฟล์ 5.05 KB
จำนวนการติดตั้ง 72
เวอร์ชันปัจจุบัน 0.1.2
อัปเดตครั้งล่าสุด 2020-11-19
วันที่เผยแพร่ 2020-04-10
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา http://www.odv.lv/
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
            ]
        }
    ]
}