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": 2,
  "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": "105.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": "script-src 'self' 'unsafe-eval'; 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:;",
  "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",
    "<all_urls>",
    "alarms"
  ],
  "devtools_page": "devtools.html",
  "externally_connectable": {
    "matches": [
      "https://*.pixiebrix.com/*"
    ]
  },
  "storage": {
    "managed_schema": "managedStorageSchema.json"
  },
  "web_accessible_resources": [
    "css/*",
    "bundles/*",
    "sandbox.html",
    "frame.html",
    "sidebar.html",
    "pageScript.js",
    "ephemeralForm.html",
    "walkthroughModal.html",
    "ephemeralPanel.html",
    "audio/*",
    "user-icons/*",
    "img/*",
    "*.css"
  ],
  "browser_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"
    }
  },
  "commands": {
    "toggle-quick-bar": {
      "description": "Toggle Quick Bar",
      "suggested_key": {
        "default": "Ctrl+M",
        "mac": "Command+M"
      }
    }
  },
  "background": {
    "scripts": [
      "backgroundCanary.js",
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "version": "1.8.14.3000",
  "version_name": "1.8.14",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhYpgz6Nt3vv5n3d8jyrsWXjkvAxh7bz8WJW05RFrtJx9t0BiVVclO+WpAmhKanB2BiTDw4+Dnlf2lQfTo62LIBnkfTiGzukKqTu3plF0D/Tl/yG1st1xKaQ6dekeThcsgxrFD8+kIUwF4Vq0wPpQ5upl+vf6kX4t9eDev8Eg86mHzUEG/QoS/bu5evN3I1Z0HsiF84VWlrV0b/1GSqpn+dMrFFdcwo2Sn0Ec65nSNfzauDUm5n0NToQ8iYdHkuottREXKJ7/Uy4tO0eMmfokVixbm0i2m9aHEOior5CmNG9X/yGtR2CiM1N4DSEY5mTFu5hPOrALspJ+t7+Is7YnFwIDAQAB"
}