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/ |
| Eメール | [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"
]
}
]
} | |