Codebattle
Web-extension for CodeBattle
Codebattleとは何ですか?
CodebattleはGlagiusによって開発されたChromeの拡張機能で、その主な機能は「Web-extension for CodeBattle」です。
拡張機能のスクリーンショット
Codebattle拡張機能のCRXファイルをダウンロード
Codebattle拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Browser extension for CodeBattle. Helps to keep track of new games and events on the site.
拡張機能の基本情報
名前 | |
ID | embfhnfkfobkdohleknckodkmhgmpdli |
公式URL | https://chromewebstore.google.com/detail/codebattle/embfhnfkfobkdohleknckodkmhgmpdli |
説明 | Web-extension for CodeBattle |
ファイルサイズ | 491 KB |
インストール数 | 1,825 |
現在のバージョン | 0.1.6 |
最終更新日 | 2021-02-15 |
公開日 | 2020-06-28 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | Glagius |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://codebattle.hexlet.io/ |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Codebattle", "description": "Web-extension for CodeBattle", "homepage_url": "https:\/\/codebattle.hexlet.io\/", "version": "0.1.6", "manifest_version": 2, "icons": { "128": "assets\/128.png" }, "browser_action": { "default_icon": "assets\/128.png", "default_title": "CodeBattle webExtension", "default_popup": "popup\/index.html" }, "background": { "scripts": [ "background\/background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content\/content.js" ] } ], "options_ui": { "page": "options\/index.html", "open_in_tab": true }, "web_accessible_resources": [ "assets\/*" ], "permissions": [ "*:\/\/codebattle.hexlet.io\/", "*:\/\/localhost\/*", "notifications", "cookies", "windows", "storage" ] } |