Added history-deleter to examples.json

This commit is contained in:
wbamberg
2016-06-22 09:06:23 -07:00
committed by GitHub
parent 599c5e0c60
commit 08bb223a80

View File

@@ -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.",