IntelliBuddies Web Automation

IntelliBuddies Web Automation

Extension for enabling web browser interaction

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_specific_settings": {
    "gecko": {
      "id": "extension@intellibuddies",
      "strict_min_version": "83.0"
    }
  },
  "name": "IntelliBuddies Web Automation V3",
  "manifest_version": 3,
  "version": "1.3",
  "description": "Extension for enabling web browser interaction",
  "icons": {
    "16": "IntelliBuddies16.png",
    "48": "IntelliBuddies48.png",
    "128": "IntelliBuddies128.png"
  },
  "page_action": {
    "default_icon": {
      "16": "IntelliBuddies16.png"
    }
  },
  "background": {
    "scripts": [
      "background.js",
      "duplexchannel.js",
      "content-api.js",
      "contentloader.js"
    ]
  },
  "permissions": [
    "nativeMessaging",
    "tabs",
    "contextMenus",
    "downloads",
    "scripting",
    "activeTab",
    "storage",
    "webNavigation"
  ],
  "host_permissions": [
    "*://developer.mozilla.org/*",
    "*://*.example.org/*",
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "duplexchannel.js",
        "content-api.js",
        "contentloader.js",
        "html2canvas.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ]
}