mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
19 lines
397 B
JSON
19 lines
397 B
JSON
{
|
|
"name": "Firefox Code Search",
|
|
"description" : "To use, type 'cs' plus a search term into the url bar.",
|
|
"version": "1.0",
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"strict_min_version": "52.0a1"
|
|
}
|
|
},
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"omnibox": { "keyword" : "cs" },
|
|
"manifest_version": 2,
|
|
"permissions": [
|
|
"https://searchfox.org/"
|
|
]
|
|
}
|