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": "The One Suspender - UnaSuspender",
"version": "1.1.5",
"description": "Auto-suspend inactive tabs with full manual controls and preferences.",
"incognito": "split",
"permissions": [
"tabs",
"storage",
"alarms",
"scripting",
"favicon"
],
"web_accessible_resources": [
{
"resources": [
"suspended.html",
"styles\/suspended.css",
"src\/ui\/suspended.js",
"icons\/icon16.png",
"icons\/icon48.png",
"icons\/icon128.png",
"migrate.html",
"src\/ui\/migrate.js",
"shortcuts.html",
"skipped.html",
"src\/ui\/skipped.js",
"styles\/skipped.css",
"styles\/options.css",
"styles\/colors.css",
"styles\/material-colors.css",
"styles\/material-components.css",
"styles\/popup-material.css",
"styles\/options-material.css",
"styles\/suspended-material.css",
"styles\/shortcuts-material.css",
"vendor\/fonts\/roboto-local.css",
"vendor\/fonts\/roboto-v30-latin-300.woff2",
"vendor\/fonts\/roboto-v30-latin-regular.woff2",
"vendor\/fonts\/roboto-v30-latin-500.woff2",
"vendor\/fonts\/roboto-v30-latin-700.woff2",
"_favicon\/*"
],
"matches": [
"<all_urls>"
]
}
],
"background": {
"service_worker": "src\/background\/background.js",
"type": "module"
},
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"options_page": "options.html",
"commands": {
"suspend-current-tab": {
"suggested_key": {
"default": "Ctrl+Shift+S"
},
"description": "Suspend current tab"
},
"unsuspend-current-tab": {
"description": "Unsuspend current tab"
},
"suspend-all-window": {
"description": "Suspend all tabs in current window"
},
"open-settings": {
"description": "Open extension settings"
},
"unsuspend-all-window": {
"description": "Unsuspend all tabs in current window"
},
"suspend-all-tabs": {
"description": "Suspend all tabs in all windows"
},
"unsuspend-all-tabs": {
"description": "Unsuspend all tabs in all windows"
}
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"src\/ui\/content.js"
],
"run_at": "document_idle"
}
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'none'; connect-src 'self'; img-src 'self' data: blob: chrome-extension: http: https:; style-src 'self'; base-uri 'self'; form-action 'none';"
}
}