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,
"version": "1.0.5",
"short_name": "Search Engine Switch",
"name": "Search Engine Switch",
"description": "Easily switch among multiple search engines without having to retype the search repeatedly.",
"action": {
"default_title": "Search Engine Switch",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.bundle.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.bundle.js"
]
}
],
"icons": {
"16": "img\/sesIcon16.png",
"48": "img\/sesIcon48.png",
"128": "img\/sesIcon128.png"
},
"options_page": "options.html",
"permissions": [
"tabs",
"storage"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"img"
],
"matches": [
"<all_urls>"
]
}
]
}