add quicknote to examples.json

This commit is contained in:
Will Bamberg
2016-04-20 08:42:11 -07:00
parent c768ae508e
commit c873e493bb

View File

@@ -140,7 +140,8 @@
"permissions",
"browser_action",
"options_ui",
"background"
"background",
"storage"
],
"javascript_modules": [
{
@@ -277,6 +278,26 @@
],
"javascript_modules": []
},
{
"name": "quicknote",
"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.",
"url": "https://github.com/mdn/webextensions-examples/tree/master/quicknote",
"manifest_keys": [
"storage",
"browser_action"
],
"javascript_modules": [
{
"name": "storage",
"apis": [
"StorageArea/get",
"StorageArea/set",
"StorageArea/remove",
"StorageArea/clear"
]
}
]
},
{
"name": "tabs-tabs-tabs",
"description": "A list of methods you can perform on a tab.",