CodewarsKatana
This extension brings small improvements to codewars.com.
什麼是CodewarsKatana?
CodewarsKatana是由http://www.odv.lv/開發的Chrome擴展程式,該擴展的主要功能是“This extension brings small improvements to codewars.com.”。
擴展截圖
下載CodewarsKatana擴展crx文件
下載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 |
ID | egkiehpelenbjlfdhcjhbmcdcachcbob |
官方網址 | 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" ] } ] } |