Codebattle
Web-extension for CodeBattle
What is Codebattle?
Codebattle is a Chrome extension developed by Glagius, and its main feature is "Web-extension for CodeBattle".
Extension Screenshots
Download Codebattle Extension CRX File
Download Codebattle extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Browser extension for CodeBattle. Helps to keep track of new games and events on the site.
Extension Basic Information
Name | |
ID | embfhnfkfobkdohleknckodkmhgmpdli |
Official URL | https://chromewebstore.google.com/detail/codebattle/embfhnfkfobkdohleknckodkmhgmpdli |
Description | Web-extension for CodeBattle |
File Size | 491 KB |
Installation Count | 1,825 |
Current Version | 0.1.6 |
Last Updated | 2021-02-15 |
Publish Date | 2020-06-28 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Glagius |
[email protected] | |
Payment Type | free |
Extension Website | https://codebattle.hexlet.io/ |
Supported Languages | 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" ] } |