mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
31 lines
692 B
JSON
31 lines
692 B
JSON
{
|
|
|
|
"manifest_version": 2,
|
|
"name": "Quicknote",
|
|
"version": "1.0",
|
|
|
|
"description": "Allows the user to make quick notes by clicking a button and entering text into the resulting popup. The notes are saved in storage. See https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Examples#quicknote",
|
|
"icons": {
|
|
"48": "icons/quicknote-48.png"
|
|
},
|
|
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "quicknote@mozilla.org",
|
|
"strict_min_version": "45.0"
|
|
}
|
|
},
|
|
|
|
"permissions": [
|
|
"storage"
|
|
],
|
|
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"32" : "icons/quicknote-32.png"
|
|
},
|
|
"default_title": "Quicknote",
|
|
"default_popup": "popup/quicknote.html"
|
|
}
|
|
}
|