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": "Workspace suspender",
"description": "Extension to automatically unloads all tabs in a not focused workspace",
"version": "2.0.0",
"icons": {
"128": "icon.png"
},
"action": {
"default_icon": "icon.png",
"default_title": "Workspace suspender",
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"activeTab",
"storage",
"system.memory"
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"suspended.html",
"suspended.js"
],
"matches": [
"<all_urls>"
]
}
],
"author": "Baudrim"
}