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,
"name": "__MSG_extName__",
"version": "1.0.0.6",
"description": "__MSG_extDesc__",
"default_locale": "en",
"permissions": [
"tabs",
"sidePanel"
],
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_title": "Click to open sidebar"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png"
},
"commands": {
"toggle_sidebar": {
"suggested_key": {
"default": "Alt+L",
"mac": "Alt+L"
},
"description": "Toggle sidebar"
},
"_execute_action": {
"suggested_key": {
"windows": "Alt+L",
"mac": "Alt+L",
"chromeos": "Alt+L",
"linux": "Alt+L"
}
}
}
}