mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 14:28:33 +02:00
19 lines
510 B
JSON
19 lines
510 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Webpack Example",
|
|
"version": "1.0.0",
|
|
"description": "A minimal example of how to use npm modules from within a WebExtension.",
|
|
"icons": {
|
|
"32": "icons/leftpad-32.png"
|
|
},
|
|
"browser_action": {
|
|
"default_icon": "icons/leftpad-32.png",
|
|
"default_title": "Left Pad",
|
|
"default_popup": "popup/left-pad.html",
|
|
"browser_style": true
|
|
},
|
|
"background": {
|
|
"scripts": ["background_scripts/index.js"]
|
|
}
|
|
}
|