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. 扩展基本信息
| 名称 | |
| 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"
]
}
]
} | |