first commit

This commit is contained in:
Vyn 2024-08-04 21:00:15 +02:00
commit 8a543a4a5a
13 changed files with 9621 additions and 0 deletions

26
extension/manifest.json Normal file
View file

@ -0,0 +1,26 @@
{
"manifest_version": 2,
"name": "Codingame-ide-sync",
"version": "1.0",
"description": "Merge all your code from your local dev environment in 1 file and copy it automatically into the codingame IDE",
"icons": {},
"content_scripts": [
{
"matches": [
"https://www.codingame.com/ide/puzzle/*",
"https://www.codingame.com/ide/challenge/*"
],
"js": ["utils.js", "sync.js"]
}
],
"permissions": [
"<all_urls>",
"tabs",
"activeTab"
]
}