Set up manifest and basic mqtt connection to adafruit io

This commit is contained in:
Dennis Schoepf 2020-11-23 12:49:29 +01:00
parent f3f8012ce3
commit 4f38af0a13
7 changed files with 7381 additions and 1 deletions

View file

@ -1,6 +1,18 @@
{
"name": "DII Hackathon",
"version": "0.1",
"description": "About Chrome extension that communicates with Adafruit.IO for the Design of Innovative Interactions course at University of Salzburg",
"description": "A Chrome extension that communicates with Adafruit.IO for the Design of Innovative Interactions course at University of Salzburg",
"permissions": ["storage"],
"background": {
"scripts": [
"dist/background/index.js"
],
"persistent": false
},
"content": {
"scripts": [
"dist/frontend/index.js"
]
},
"manifest_version": 2
}