2022-03-14 09:58:47 +00:00
|
|
|
{
|
|
|
|
"$schema": "http://json.schemastore.org/webextension",
|
|
|
|
"manifest_version": 2,
|
|
|
|
"name": "Fangs",
|
|
|
|
"description": "Inject custom DuckDuckGo Bangs into your browsing experience.",
|
2022-03-14 10:14:17 +00:00
|
|
|
"version": "0.1.1",
|
2022-03-14 09:58:47 +00:00
|
|
|
"permissions": [
|
|
|
|
"storage",
|
|
|
|
"tabs",
|
|
|
|
"webNavigation"
|
|
|
|
],
|
|
|
|
"content_security_policy": "script-src 'self'; object-src 'self'; style-src 'unsafe-inline'",
|
|
|
|
"web_accessible_resources": [
|
|
|
|
"assets/**"
|
|
|
|
],
|
|
|
|
"icons": {
|
|
|
|
"128": "assets/fangs-128.png"
|
|
|
|
},
|
|
|
|
"browser_action": {
|
|
|
|
"default_icon": {
|
|
|
|
"128": "assets/fangs-128.png"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"options_ui": {
|
|
|
|
"page": "options/index.html",
|
|
|
|
"open_in_tab": true
|
|
|
|
},
|
|
|
|
"background": {
|
|
|
|
"scripts": [
|
|
|
|
"background-scripts/initialize.ts"
|
|
|
|
]
|
2022-03-14 10:11:50 +00:00
|
|
|
},
|
|
|
|
"applications": {
|
|
|
|
"gecko": {
|
|
|
|
"id": "{cbb8b06b-9d6f-42f2-9d8d-7581f411653c}"
|
|
|
|
}
|
2022-03-14 09:58:47 +00:00
|
|
|
}
|
|
|
|
}
|