mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
25 lines
490 B
JSON
25 lines
490 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Navigation Stats",
|
|
"version": "0.1.0",
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"32": "icons/icon-32.png"
|
|
},
|
|
"default_title": "Navigation Stats",
|
|
"default_popup": "popup.html"
|
|
},
|
|
"permissions": ["webNavigation", "storage"],
|
|
"background": {
|
|
"scripts": [ "background.js" ]
|
|
},
|
|
"icons": {
|
|
"32": "icons/icon-32.png"
|
|
},
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"strict_min_version": "50.0"
|
|
}
|
|
}
|
|
}
|