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",
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_extName__",
"version": "2.2.1",
"description": "__MSG_extDesc__",
"action": {
"default_title": "__MSG_actionName__"
},
"side_panel": {
"default_path": ".\/sidepanel\/index.html"
},
"background": {
"service_worker": "background.js"
},
"options_ui": {
"page": ".\/options\/index.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
".\/content-scripts\/glow-animation.js"
],
"run_at": "document_start"
},
{
"matches": [
"<all_urls>"
],
"js": [
".\/content-scripts\/sidebar-trigger.js"
],
"run_at": "document_end"
}
],
"icons": {
"16": "assets\/icon-16.png",
"32": "assets\/icon-32.png",
"48": "assets\/icon-48.png",
"128": "assets\/icon-128.png"
},
"permissions": [
"tabs",
"storage",
"tabGroups",
"contextMenus",
"sidePanel",
"notifications",
"scripting"
],
"optional_permissions": [
"history",
"topSites",
"sessions",
"webNavigation"
],
"host_permissions": [
"<all_urls>",
"https:\/\/www.sidespace.app\/api",
"https:\/\/sidespace.app\/api"
],
"externally_connectable": {
"matches": [
"https:\/\/www.sidespace.app\/*",
"https:\/\/sidespace.app\/*"
]
},
"content_security_policy": [],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+P",
"mac": "Command+Shift+P"
},
"description": "__MSG_executeAction__"
}
}
}