Basic POC for frontend page manipulation

This commit is contained in:
Dennis Schoepf 2020-11-23 13:27:37 +01:00
parent 4f38af0a13
commit 85998c634c
5 changed files with 40 additions and 15 deletions

View file

@ -2,17 +2,16 @@
"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"],
"permissions": ["storage", "activeTab"],
"background": {
"scripts": [
"dist/background/index.js"
],
"scripts": ["dist/background/index.js"],
"persistent": false
},
"content": {
"scripts": [
"dist/frontend/index.js"
]
},
"content_scripts": [
{
"matches": ["https://meet.google.com/*"],
"js": ["dist/frontend/index.js"]
}
],
"manifest_version": 2
}
}