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": "0.5.1",
"name": "Search On Site",
"description": "The extension allows you to search on a specific site.",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"background": {
"service_worker": "index.js",
"type": "module"
},
"action": {
"default_icon": {
"19": "icon.png",
"38": "icon.png"
},
"default_title": "Click to Search On Site"
},
"permissions": [
"tabs",
"search",
"contextMenus"
],
"omnibox": {
"keyword": "son"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+K"
}
}
},
"externally_connectable": {
"matches": [
"*:\/\/*.searchon.site\/*",
"*:\/\/localhost\/*"
]
}
}