OctoSearch/manifest.json
Jaidyn Ann 404479be6c Split communal/utility functions into `common.js`
`common.js` will be prepended to other JS files using the Makefile.
2023-04-04 08:17:50 -05:00

42 lines
711 B
JSON

{
"manifest_version": 2,
"name": "Multi engine search",
"version": "1.2",
"description": "Search with multiple search engines simultaneously.",
"homepage_url": "https://notabug.org/jadedctrl/octosearch",
"icons": {
"48": "icons/icon.png"
},
"permissions": [
"search",
"webRequest",
"webRequestBlocking",
"*://octosearch.invalid/*"
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+L"
}
}
},
"browser_action": {
"default_icon": "icons/icon.png",
"default_title": "OctoSearch",
"default_popup": "pages/popup.html"
},
"background": {
"scripts": [
"background.js"
]
}
}