This commit is contained in:
Ian Gulliver
2022-10-13 11:09:24 -07:00
committed by Ian Gulliver
commit cd9711b19c
5 changed files with 278 additions and 0 deletions

29
manifest.json Normal file
View File

@@ -0,0 +1,29 @@
{
"manifest_version": 2,
"name": "Quick Asana",
"version": "0.1",
"icons": {
"48": "icons/asana.png"
},
"permissions": [
"storage",
"tabs",
"<all_urls>"
],
"browser_action": {
"default_icon": "icons/asana.png",
"default_title": "Quick Asana"
},
"background": {
"scripts": ["background.js"]
},
"browser_specific_settings": {
"gecko": {
"id": "{073d8528-4b24-11ed-9b73-c71d3da4ab37}"
}
}
}