Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"$schema": "http:\/\/json.schemastore.org\/chrome-manifest",
"manifest_version": 3,
"author": "PixieBrix, Inc.",
"name": "PixieBrix BETA",
"short_name": "PixieBrix BETA",
"description": "Customize, extend, and integrate your favorite SaaS apps without writing a line of code!",
"version": "3.0.3.2001",
"version_name": "3.0.3-beta.1",
"icons": {
"16": "img\/logo16.png",
"32": "img\/logo32.png",
"48": "img\/logo48.png",
"128": "img\/logo128.png"
},
"homepage_url": "https:\/\/www.pixiebrix.com",
"minimum_chrome_version": "130.0",
"content_security_policy": {
"extension_pages": "script-src 'self'; font-src 'self' https:\/\/fonts.gstatic.com https:\/\/stylesheets.pixiebrix.com; connect-src 'self' http: https: wss: data:; 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": [
"<all_urls>"
],
"exclude_matches": [
"https:\/\/*.googleapis.com\/*"
],
"js": [
"contentScript.js"
],
"all_frames": true,
"match_about_blank": true,
"run_at": "document_idle",
"match_origin_as_fallback": true
},
{
"matches": [
"<all_urls>"
],
"exclude_matches": [
"https:\/\/*.googleapis.com\/*"
],
"js": [
"hotkeyContentScript.js"
],
"run_at": "document_start",
"all_frames": true,
"match_origin_as_fallback": true
},
{
"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",
"tabCapture",
"webNavigation",
"contextMenus",
"alarms",
"scripting",
"offscreen",
"sidePanel",
"system.memory"
],
"host_permissions": [
"<all_urls>"
],
"devtools_page": "devtools.html",
"externally_connectable": {
"matches": [
"https:\/\/*.pixiebrix.com\/*"
]
},
"storage": {
"managed_schema": "managedStorageSchema.json"
},
"web_accessible_resources": [
{
"resources": [
"css\/*",
"bundles\/*",
"pageScript.js",
"img\/*",
"*.html",
"*.css"
],
"matches": [
"*:\/\/*\/*"
]
}
],
"action": {
"default_title": "PixieBrix",
"default_icon": {
"16": "img\/icon-16-inactive.png",
"32": "img\/icon-32-inactive.png",
"48": "img\/icon-48-inactive.png",
"128": "img\/icon-128-inactive.png"
}
},
"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
},
"side_panel": {
"default_path": "sidebar.html"
}
}