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 |
| 电子邮箱 | [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"
]
} | |