CodewarsKatana
This extension brings small improvements to codewars.com.
ما هو CodewarsKatana؟
CodewarsKatana هو إضافة Chrome تم تطويرها بواسطة http://www.odv.lv/، والميزة الرئيسية لها هي "This extension brings small improvements to codewars.com.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة CodewarsKatana
قم بتنزيل ملفات الامتداد CodewarsKatana بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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" ] } ] } |