OctoSearch/manifest.json

42 lines
711 B
JSON
Raw Permalink Normal View History

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