Bubble Buddy

Bubble Buddy

Toggle debug mode, reveal in elements tree, start/edit workflow & switch between live/test versions using keyboard shortcuts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bubble Buddy",
  "description": "Toggle debug mode, reveal in elements tree, start/edit workflow & switch between live/test versions using keyboard shortcuts",
  "version": "2.4",
  "permissions": [
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "https://*.bubble.io/*",
    "https://*.bubble.is/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Click to change the 'debug_mode'"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.bubble.io/page*",
        "https://*.bubble.is/page*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "styles.css"
      ],
      "matches": [
        "https://*.bubble.io/*",
        "https://*.bubble.is/*"
      ]
    }
  ],
  "icons": {
    "16": "images/bb_16.png",
    "32": "images/bb_32.png",
    "48": "images/bb_48.png",
    "128": "images/bb_128.png"
  },
  "commands": {
    "toggle-page-version": {
      "suggested_key": "Ctrl+Shift+L",
      "description": "Toggle App Page version - test <--> live"
    },
    "reveal-elements-tree": {
      "suggested_key": "Ctrl+Shift+E",
      "description": "Reveal in Elements tree"
    },
    "toggle-sidepanel": {
      "suggested_key": "Alt+Shift+S",
      "description": "Toggle Sidepanel"
    },
    "_execute_action": {
      "suggested_key": "Ctrl+M",
      "description": "Toggle debug_mode"
    }
  }
}