HistoryCleaner/manifest.json

22 lines
452 B
JSON
Raw Normal View History

2017-02-07 23:31:13 +00:00
{
"manifest_version": 2,
"name": "History Cleaner",
"version": "1",
"description": "Deletes history older than a specified amount of days.",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"background": {
"scripts": ["background.js"]
},
"permissions": [
"history",
"storage",
"idle"
],
"options_ui": {
"page": "options.html"
}
}