HistoryCleaner/extension/manifest.json
2019-06-25 11:08:59 -04:00

27 lines
627 B
JSON

{
"manifest_version": 2,
"name": "History Cleaner",
"version": "1.2.2",
"description": "Deletes history older than a specified amount of days.",
"applications": {
"gecko": {
"id": "{a138007c-5ff6-4d10-83d9-0afaf0efbe5e}"
}
},
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"background": {
"scripts": ["webext_utilities.js", "background.js"]
},
"permissions": [
"history",
"storage",
"idle"
],
"options_ui": {
"page": "options.html",
"browser_style": true
}
}