17 lines
485 B
JSON
17 lines
485 B
JSON
{
|
|
"name": "DII Hackathon",
|
|
"version": "0.1",
|
|
"description": "A Chrome extension that communicates with Adafruit.IO for the Design of Innovative Interactions course at University of Salzburg",
|
|
"permissions": ["storage", "activeTab"],
|
|
"background": {
|
|
"scripts": ["dist/background/index.js"],
|
|
"persistent": true
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://meet.google.com/*"],
|
|
"js": ["dist/frontend/index.js"]
|
|
}
|
|
],
|
|
"manifest_version": 2
|
|
}
|