Files
quickasana/manifest.json

41 lines
750 B
JSON
Raw Normal View History

2022-10-13 11:09:24 -07:00
{
2022-10-19 22:53:55 -07:00
"manifest_version": 2,
"name": "Quick Asana",
"version": "0.1",
"icons": {
"16": "icons/idle-16.png",
"48": "icons/idle-48.png",
"64": "icons/idle-64.png",
"128": "icons/idle-128.png",
"256": "icons/idle-256.png"
},
2022-10-13 11:09:24 -07:00
2022-10-19 22:53:55 -07:00
"permissions": [
"clipboardRead",
"storage",
"unlimitedStorage",
"<all_urls>"
],
2022-10-13 11:09:24 -07:00
2022-10-19 22:53:55 -07:00
"browser_action": {
"default_icon": {
"16": "icons/idle-16.png",
"48": "icons/idle-48.png",
"64": "icons/idle-64.png",
"128": "icons/idle-128.png",
"256": "icons/idle-256.png"
},
"default_title": "Quick Asana"
},
2022-10-13 11:09:24 -07:00
2022-10-19 22:53:55 -07:00
"background": {
"scripts": ["background.js"]
},
2022-10-13 11:09:24 -07:00
2022-10-19 22:53:55 -07:00
"browser_specific_settings": {
"gecko": {
"id": "{073d8528-4b24-11ed-9b73-c71d3da4ab37}"
}
}
2022-10-13 11:09:24 -07:00
}