From c873e493bbf304bb4e527dbf1494902ece83d195 Mon Sep 17 00:00:00 2001 From: Will Bamberg Date: Wed, 20 Apr 2016 08:42:11 -0700 Subject: [PATCH] add quicknote to examples.json --- examples.json | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/examples.json b/examples.json index 04f099b..cb8d8e7 100644 --- a/examples.json +++ b/examples.json @@ -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.",