Relate - Your AI Bubble Buddy

Relate - Your AI Bubble Buddy

Your description goes here.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Relate - Your AI Bubble Buddy",
  "description": "Your description goes here.",
  "version": "0.3",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://bubble.io/page?*"
      ],
      "exclude_matches": [
        "https://bubblehacks.io/charles"
      ],
      "js": [
        "CustomJavaScript/customScript1.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/16x16.png",
      "32": "images/32x32.png",
      "48": "images/48x48.png",
      "128": "images/128x128.png"
    }
  },
  "icons": {
    "16": "images/16x16.png",
    "32": "images/32x32.png",
    "48": "images/48x48.png",
    "128": "images/128x128.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "clipboardWrite"
  ],
  "host_permissions": [
    "*://*.bubble.io/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html",
        "Transparent_64.png"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": false
    }
  ]
}