From 08bb223a804fddf2e6bd75513c7bd0e0121fe8a0 Mon Sep 17 00:00:00 2001 From: wbamberg Date: Wed, 22 Jun 2016 09:06:23 -0700 Subject: [PATCH] Added history-deleter to examples.json --- examples.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/examples.json b/examples.json index 0ba3577..366e4da 100644 --- a/examples.json +++ b/examples.json @@ -203,6 +203,38 @@ } ] }, + { + "name": "history-deleter", + "description": "History API demo: deletes history items for a given domain", + "url": "https://github.com/mdn/webextensions-examples/tree/master/history-deleter", + "manifest_keys": [ + "permissions", + "page_action", + "background" + ], + "javascript_modules": [ + { + "name": "history", + "apis": [ + "deleteUrl", + "search" + ] + }, + { + "name": "pageAction", + "apis": [ + "show" + ] + }, + { + "name": "tabs", + "apis": [ + "onUpdated", + "query" + ] + } + ] + }, { "name": "inpage-toolbar-ui", "description": "Adds a browser action icon to the toolbar. Click the button to inject an in-page toolbar UI into the current webpage.",