Codebattle
Web-extension for CodeBattle
Vad är Codebattle?
Codebattle är en Chrome-tillägg utvecklad av Glagius, och dess huvudfunktion är "Web-extension for CodeBattle".
Tilläggsskärmbilder
Ladda ner Codebattle-förlängningens CRX-fil
Ladda ner Codebattle-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Browser extension for CodeBattle.
Helps to keep track of new games and events on the site. Grundläggande Information om Tillägg
| Namn | |
| ID | embfhnfkfobkdohleknckodkmhgmpdli |
| Officiell webbadress | https://chromewebstore.google.com/detail/codebattle/embfhnfkfobkdohleknckodkmhgmpdli |
| Beskrivning | Web-extension for CodeBattle |
| Filstorlek | 491 KB |
| Antal Installationer | 1,825 |
| Aktuell Version | 0.1.6 |
| Senast Uppdaterad | 2021-02-15 |
| Publiceringsdatum | 2020-06-28 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | Glagius |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://codebattle.hexlet.io/ |
| Stödda Språk | 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"
]
} | |