Files
jackboxpartypack-gamepicker/chrome-extension/manifest.json

46 lines
956 B
JSON
Raw Normal View History

{
"manifest_version": 3,
"name": "Jackbox Chat Tracker for Kosmi",
"version": "3.2.0",
"description": "Track thisgame++ and thisgame-- votes from Kosmi chat for Jackbox games",
"permissions": [
"storage",
"activeTab",
"downloads",
"sidePanel"
],
"host_permissions": [
"https://app.kosmi.io/*"
],
"content_scripts": [
{
"matches": ["https://app.kosmi.io/room/*"],
"js": ["content.js"],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": ["inject.js"],
"matches": ["https://app.kosmi.io/*"]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"side_panel": {
"default_path": "popup.html"
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}