mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
* started browsingData example * Added browsingData example * Remove unwanted files * Remove logging statements * Added comments * Simplify storage inititialization * Fix review comments
31 lines
535 B
JSON
31 lines
535 B
JSON
{
|
|
|
|
"description": "Forget it!",
|
|
"manifest_version": 2,
|
|
"name": "forget-it",
|
|
"version": "2.0",
|
|
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/forget-it",
|
|
"icons": {
|
|
"48": "icons/trash.svg"
|
|
},
|
|
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
|
|
"browser_action": {
|
|
"default_icon": "icons/trash.svg",
|
|
"default_title": "Forget it!"
|
|
},
|
|
|
|
"options_ui": {
|
|
"page": "options/options.html"
|
|
},
|
|
|
|
"permissions": [
|
|
"browsingData",
|
|
"notifications",
|
|
"storage"
|
|
]
|
|
}
|