mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 14:28:33 +02:00
17 lines
419 B
JSON
17 lines
419 B
JSON
{
|
|
"name": "Remove element on click",
|
|
"description": "Adds a context menu item that shows a panel upon click, from where you can choose to remove the clicked element.",
|
|
"version": "1",
|
|
"manifest_version": 2,
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"page_action": {
|
|
"default_popup": "popup.html"
|
|
},
|
|
"permissions": [
|
|
"menus",
|
|
"activeTab"
|
|
]
|
|
}
|