Botpath

Botpath

To Automate your Business Processes Like The Fortune 500

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Botpath",
  "description": "To Automate your Business Processes Like The Fortune 500",
  "version": "1.0.3",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "icons": {
    "48": "icons/botpath-48.png",
    "128": "icons/botpath-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "permissions": [
    "debugger",
    "storage",
    "notifications",
    "activeTab",
    "cookies",
    "tabs",
    "<all_urls>",
    "externally_connectable"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.500apps.com/*",
        "http://localhost/*"
      ],
      "css": [
        "/cs/style.css"
      ],
      "js": [
        "cs/script.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.500apps.com/*",
      "http://localhost/*"
    ]
  }
}