CodinGame Sync - Ext
CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor.
Vad är CodinGame Sync - Ext?
CodinGame Sync - Ext är en Chrome-tillägg utvecklad av CodinGame, och dess huvudfunktion är "CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor.".
Tilläggsskärmbilder
Ladda ner CodinGame Sync - Ext-förlängningens CRX-fil
Ladda ner CodinGame Sync - Ext-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
Keep Coding!
https://www.codingame.com/forum/t/codingame-sync-beta/ Grundläggande Information om Tillägg
| Namn | |
| ID | ldjnbdgcceengbjkalemckffhaajkehd |
| Officiell webbadress | https://chromewebstore.google.com/detail/codingame-sync-ext/ldjnbdgcceengbjkalemckffhaajkehd |
| Beskrivning | CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor. |
| Filstorlek | 44.93 KB |
| Antal Installationer | 10,238 |
| Aktuell Version | 1.1.1 Ext |
| Senast Uppdaterad | 2022-10-06 |
| Publiceringsdatum | 2015-12-16 |
| Betyg | 4.52/5 Totalt 29 Betyg |
| Utvecklare | CodinGame |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://www.codingame.com |
| Hjälpsida URL | https://www.codingame.com/forum/t/codingame-sync-beta |
| URL till Sekretesspolicy Sidan | https://www.codingame.com/legal/privacy-policy |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "CodinGame Sync - Ext",
"version": "1.1.1",
"version_name": "1.1.1 Ext",
"minimum_chrome_version": "35",
"description": "CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor.",
"icons": {
"128": "images\/icon128.png",
"38": "images\/icon_codingame_sync_01.png"
},
"background": {
"scripts": [
"js\/background.js"
]
},
"content_scripts": [
{
"js": [
"lib\/jquery-1.8.2.min.js",
"js\/content.js"
],
"matches": [
"http:\/\/*.codingame.com\/*",
"https:\/\/*.codingame.com\/*"
]
}
],
"content_security_policy": "script-src 'self' ; object-src 'self'",
"permissions": [
"tabs"
],
"page_action": {
"default_title": "CG-Sync"
}
} | |