{
|
|
"manifest_version": 3,
|
|
"name": "Gesture Presenter",
|
|
"version": "1.0",
|
|
"description": "Control Slides with just hand gestures!",
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"32": "icons/icon32.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
},
|
|
"permissions": ["storage", "tabs"],
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://docs.google.com/presentation/*"],
|
|
"js": ["js/contentScript.js"]
|
|
}
|
|
],
|
|
"background": {
|
|
"service_worker": "js/background.js"
|
|
},
|
|
"action": {
|
|
"default_popup": "js/index.html"
|
|
},
|
|
"content_security_policy": {
|
|
"extension_pages": "script-src 'self'; object-src 'self'"
|
|
}
|
|
}
|