Bardeen AI: Automate Browser Apps for Free

Bardeen AI: Automate Browser Apps for Free

Build automation with ChatGPT, Sheets, and other web apps. Scrape, export & extract data with AI to improve sales & productivity

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "42.0"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "icons/bardeen-16.png",
      "32": "icons/bardeen-32.png"
    },
    "default_title": "Bardeen AI: Automate Browser Apps for Free"
  },
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "icons/bardeen-16.png",
    "32": "icons/bardeen-32.png",
    "48": "icons/bardeen-48.png",
    "72": "icons/bardeen-72.png",
    "96": "icons/bardeen-96.png",
    "128": "icons/bardeen-128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "default_locale": "en",
  "short_name": "Bardeen",
  "permissions": [
    "activeTab",
    "alarms",
    "bookmarks",
    "contextMenus",
    "history",
    "notifications",
    "scripting",
    "storage",
    "tabs",
    "tts",
    "unlimitedStorage",
    "webNavigation",
    "offscreen",
    "gcm"
  ],
  "host_permissions": [
    "<all_urls>",
    "*://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "content_scripts": [
    {
      "js": [
        "website-interactive.js"
      ],
      "css": [
        "website-interactive.css"
      ],
      "matches": [
        "*://*.bardeen.ai/*",
        "*://bardeen.webflow.io/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "page-events.js"
      ],
      "css": [],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.gif",
        "*.jpg",
        "*.png",
        "*.svg",
        "*.woff2",
        "*.webm",
        "*.css",
        "boot-prompt.html",
        "offscreen-dom.html",
        "iframe.html"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "commands": {
    "run_magicbox": {
      "suggested_key": {
        "default": "Alt+M",
        "mac": "Alt+M"
      },
      "description": "Run Bardeen Magicbox"
    },
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+B",
        "mac": "Alt+B"
      }
    }
  },
  "version": "2.55.0"
}