mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
25 lines
589 B
JSON
25 lines
589 B
JSON
{
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"description": "Gives a popup to list and delete history on a domain.",
|
|
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/history-deleter",
|
|
"page_action": {
|
|
"default_title": "History deleter",
|
|
"default_popup": "history.html",
|
|
"default_icon": "icons/history.svg"
|
|
},
|
|
"icons": {
|
|
"48": "icons/history.svg",
|
|
"96": "icons/history.svg"
|
|
},
|
|
"permissions": [
|
|
"activeTab",
|
|
"history",
|
|
"tabs"
|
|
],
|
|
"manifest_version": 2,
|
|
"name": "History Deleter",
|
|
"version": "1.0"
|
|
}
|