mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-05-04 22:59:38 +02:00
27 lines
376 B
JSON
27 lines
376 B
JSON
{
|
|
|
|
"manifest_version": 2,
|
|
"name": "chillout-page-action",
|
|
"version": "1.0",
|
|
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "chillout-page-action@mozilla.org"
|
|
}
|
|
},
|
|
|
|
"permissions": [
|
|
"tabs"
|
|
],
|
|
|
|
"page_action": {
|
|
"default_icon": "button/chillout.png",
|
|
"default_title": "Chill out"
|
|
},
|
|
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
}
|
|
|
|
}
|