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.2.1",
"description": "__MSG_extDescription__",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"tabs",
"storage",
"alarms",
"contextMenus",
"activeTab",
"notifications",
"system.memory"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png"
},
"default_title": "Smart Tab Suspender"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"options_ui": {
"page": "options\/options.html",
"open_in_tab": true
},
"commands": {
"suspend-current-tab": {
"suggested_key": {
"default": "Alt+Shift+S",
"mac": "Alt+Shift+S"
},
"description": "Suspend the current tab"
},
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+T",
"mac": "Alt+Shift+T"
},
"description": "Open Smart Tab Suspender popup"
}
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"default_locale": "en"
}