unchecker/manifest.json

35 lines
643 B
JSON
Raw Normal View History

2018-05-29 21:35:15 +00:00
{
2018-05-29 21:36:11 +00:00
"description": "Simple extension letting you uncheck all checkboxes on a page.",
2018-05-29 21:35:15 +00:00
"manifest_version": 2,
"name": "unchecker",
"version": "1.0",
2018-05-29 21:51:32 +00:00
"author": "Ad5001",
"developer": {
"name": "Ad5001",
"url": "https://ad5001.eu"
},
"applications": {
"gecko": {
"id": "unchecker@ad5001.eu",
"strict_min_version": "42.0"
}
},
2018-05-29 21:35:15 +00:00
"homepage_url": "https://github.com/Ad5001/unchecker",
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_icon": "icons/off.svg",
"browser_style": true
},
"permissions": [
"activeTab",
"tabs"
]
}