show how to persist data between restarts (#209)

This commit is contained in:
Andy McKay
2017-04-27 09:19:49 -07:00
committed by wbamberg
parent 48d7eb4479
commit f7c8862703
2 changed files with 18 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Quicknote",
"version": "1.0",
"version": "1.1",
"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": {
@@ -11,7 +11,7 @@
"permissions": [
"storage"
],
],
"browser_action": {
"default_icon": {
@@ -19,5 +19,12 @@
},
"default_title": "Quicknote",
"default_popup": "popup/quicknote.html"
},
"applications": {
"gecko": {
"id": "quicknote-example@mozilla.org"
}
}
}