mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-17 14:59:12 +02:00
18 lines
353 B
JSON
Executable File
18 lines
353 B
JSON
Executable File
{
|
|
"manifest_version": 2,
|
|
"name": "react-es6-popup-example",
|
|
"version": "1.0",
|
|
|
|
"browser_action": {
|
|
"browser_style": true,
|
|
"default_icon": {
|
|
"48": "images/Watermelon-48.png",
|
|
"96": "images/Watermelon-96.png"
|
|
},
|
|
"default_title": "React Example",
|
|
"default_popup": "popup.html"
|
|
},
|
|
|
|
"permissions": ["activeTab"]
|
|
}
|