PixieBrix

PixieBrix

Customize, extend, and integrate your favorite SaaS apps without writing a line of code!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "author": "PixieBrix, Inc.",
  "name": "PixieBrix",
  "short_name": "PixieBrix",
  "description": "Customize, extend, and integrate your favorite SaaS apps without writing a line of code!",
  "homepage_url": "https://www.pixiebrix.com",
  "minimum_chrome_version": "116.0",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "91.0"
    }
  },
  "icons": {
    "16": "icons/logo16.png",
    "32": "icons/logo32.png",
    "48": "icons/logo48.png",
    "128": "icons/logo128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; font-src 'self' https://fonts.gstatic.com; connect-src 'self' http: https:; object-src 'self'; img-src 'self' data: https:; style-src 'self' 'unsafe-inline' https:; frame-src 'self' http: https:;",
    "sandbox": "sandbox allow-scripts allow-forms; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [
        "https://*.googleapis.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "css": [
        "contentScript.css"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "loadActivationEnhancements.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.pixiebrix.com/*"
      ],
      "js": [
        "setExtensionIdInApp.js"
      ],
      "run_at": "document_end"
    }
  ],
  "sandbox": {
    "pages": [
      "sandbox.html"
    ]
  },
  "optional_permissions": [
    "clipboardWrite"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "identity",
    "tabs",
    "webNavigation",
    "contextMenus",
    "alarms",
    "devtools",
    "scripting",
    "offscreen",
    "sidePanel"
  ],
  "devtools_page": "devtools.html",
  "externally_connectable": {
    "matches": [
      "https://*.pixiebrix.com/*"
    ]
  },
  "storage": {
    "managed_schema": "managedStorageSchema.json"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "css/*",
        "bundles/*",
        "sandbox.html",
        "frame.html",
        "sidebar.html",
        "pageScript.js",
        "ephemeralForm.html",
        "walkthroughModal.html",
        "ephemeralPanel.html",
        "audio/*",
        "user-icons/*",
        "img/*",
        "*.css"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "commands": {
    "toggle-quick-bar": {
      "description": "Toggle Quick Bar",
      "suggested_key": {
        "default": "Ctrl+M",
        "mac": "Command+M"
      }
    }
  },
  "background": {
    "service_worker": "background.worker.js",
    "type": "module"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "version": "2.0.1.3000",
  "version_name": "2.0.1-mv3",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhYpgz6Nt3vv5n3d8jyrsWXjkvAxh7bz8WJW05RFrtJx9t0BiVVclO+WpAmhKanB2BiTDw4+Dnlf2lQfTo62LIBnkfTiGzukKqTu3plF0D/Tl/yG1st1xKaQ6dekeThcsgxrFD8+kIUwF4Vq0wPpQ5upl+vf6kX4t9eDev8Eg86mHzUEG/QoS/bu5evN3I1Z0HsiF84VWlrV0b/1GSqpn+dMrFFdcwo2Sn0Ec65nSNfzauDUm5n0NToQ8iYdHkuottREXKJ7/Uy4tO0eMmfokVixbm0i2m9aHEOior5CmNG9X/yGtR2CiM1N4DSEY5mTFu5hPOrALspJ+t7+Is7YnFwIDAQAB",
  "host_permissions": [
    "<all_urls>"
  ],
  "side_panel": {
    "default_path": "sidebar.html"
  },
  "action": {
    "default_title": "PixieBrix",
    "default_icon": {
      "16": "icons/inactive/logo16.png",
      "32": "icons/inactive/logo32.png",
      "48": "icons/inactive/logo48.png",
      "128": "icons/inactive/logo128.png"
    }
  }
}