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": "Domain Switcher",
"version": "1.0.0",
"description": "Easily switch between domains while keeping the same path and query parameters",
"permissions": [
"activeTab",
"storage"
],
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+D",
"mac": "Command+Shift+D"
},
"description": "Open Domain Switcher"
},
"switch-domain-1": {
"suggested_key": {
"default": "Ctrl+Shift+1",
"mac": "Command+Shift+1"
},
"description": "Switch to first saved domain"
},
"switch-domain-2": {
"suggested_key": {
"default": "Ctrl+Shift+2",
"mac": "Command+Shift+2"
},
"description": "Switch to second saved domain"
},
"switch-domain-3": {
"suggested_key": {
"default": "Ctrl+Shift+3",
"mac": "Command+Shift+3"
},
"description": "Switch to third saved domain"
}
},
"background": {
"service_worker": "background\/background.js"
},
"author": "Kaushal Kumar Shakya",
"homepage_url": "https:\/\/github.com\/Kaushal297\/domain-switcher",
"options_ui": {
"page": "privacy-policy.html",
"open_in_tab": true
},
"content_security_policy": {
"extension_pages": "default-src 'self'; script-src 'self'; object-src 'none'; style-src 'self'; img-src 'self'; font-src 'self'; connect-src 'none'"
}
}