HistoryCleaner/manifest.json

27 lines
571 B
JSON
Raw Normal View History

2017-02-07 23:31:13 +00:00
{
"manifest_version": 2,
"name": "History Cleaner",
2017-02-08 23:07:13 +00:00
"version": "1.1",
2017-02-07 23:31:13 +00:00
"description": "Deletes history older than a specified amount of days.",
2017-03-12 14:59:11 +00:00
"applications": {
"gecko": {
"id": "{a138007c-5ff6-4d10-83d9-0afaf0efbe5e}"
}
},
2017-02-07 23:31:13 +00:00
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"background": {
"scripts": ["background.js"]
},
"permissions": [
"history",
"storage",
"idle"
],
"options_ui": {
"page": "options.html"
}
}