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": "Orrder",
"version": "1.0.0",
"description": "A powerful tab manager for organizing and decluttering your browser tabs",
"permissions": [
"tabs",
"storage",
"notifications",
"system.memory",
"commands"
],
"action": {
"default_popup": "popup.html"
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"commands": {
"save-all-tabs": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Save all tabs"
},
"restore-all-tabs": {
"suggested_key": {
"default": "Ctrl+Shift+R",
"mac": "Command+Shift+R"
},
"description": "Restore all saved tabs"
}
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"icons\/*",
"suspended.html"
],
"matches": [
"<all_urls>"
]
}
]
}