Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Search Site WE",
"version": "31.1",
"description": "Search within the current subdomain or within the entire domain.",
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"64": "icon64.png",
"128": "icon128-96.png"
},
"minimum_chrome_version": "88",
"permissions": [
"tabs",
"webNavigation",
"contextMenus",
"notifications",
"storage"
],
"host_permissions": [],
"action": {
"default_icon": {
"16": "icon16.png"
},
"default_title": "Search Site WE",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content.js"
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"commands": {
"_execute_action": {
"description": "Show Search Popup",
"suggested_key": {
"default": "Alt+K"
}
}
}
}