Concord Automation

Concord Automation

Concord automation support.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Concord Automation",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "Concord automation support.",
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "icons": {
    "16": "Concord16.png",
    "48": "Concord48.png"
  },
  "browser_action": {
    "default_icon": "Concord48.png"
  },
  "permissions": [
    "background",
    "tabs",
    "nativeMessaging",
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "msgport.js",
        "nodemap.js",
        "content.js"
      ],
      "run_at": "document_start"
    }
  ]
}