INTELLIBOT CHROME EXTENSION

INTELLIBOT CHROME EXTENSION

Intellibot extension for browser interaction.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "INTELLIBOT CHROME EXTENSION",
  "short_name": "ibcrx",
  "version": "1.1",
  "manifest_version": 2,
  "description": "Intellibot extension for browser interaction.",
  "icons": {
    "24": "icons/logo.png",
    "32": "icons/logo.png",
    "48": "icons/logo.png",
    "128": "icons/logo.png"
  },
  "background": {
    "scripts": [
      "scripts/main.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "scripts/main.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "management",
    "nativeMessaging",
    "tabs",
    "activeTab",
    "background",
    "<all_urls>"
  ]
}