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