CodinGame Sync - Ext

CodinGame Sync - Ext

CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor.

Merlin
Additional files are visible only to premium users

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": {
    "38": "images/icon_codingame_sync_01.png",
    "128": "images/icon128.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"
  }
}