mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
30 lines
498 B
JSON
30 lines
498 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Permissions Example",
|
|
"description": "Permissions Example",
|
|
"version": "1.0",
|
|
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"icons": {
|
|
"48": "icon.svg"
|
|
},
|
|
"browser_action": {
|
|
"default_title": "Permissions Example",
|
|
"default_icon": "icon.svg"
|
|
},
|
|
|
|
"permissions": [
|
|
"tabs"
|
|
],
|
|
"optional_permissions": [
|
|
"history"
|
|
],
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"strict_min_version": "55.0a2"
|
|
}
|
|
}
|
|
}
|