first commit
This commit is contained in:
commit
8a543a4a5a
13 changed files with 9621 additions and 0 deletions
26
extension/manifest.json
Normal file
26
extension/manifest.json
Normal 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"
|
||||
]
|
||||
}
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue