keep teams and slack online
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "keep-teams-online",
"description": "keep teams and slack online",
"version": "0.4",
"action": {
"default_icon": {
"32": "32x32.png",
"48": "48x48.png",
"64": "64x64.png",
"96": "96x96.png",
"128": "128x128.png"
},
"default_title": "Keep Teams Online"
},
"content_scripts": [
{
"matches": [
"https://teams.microsoft.com/*",
"https://app.slack.com/*"
],
"js": [
"client/init.js"
],
"run_at": "document_start"
}
],
"permissions": [
"unlimitedStorage",
"storage"
],
"background": {
"service_worker": "server/index.js"
},
"web_accessible_resources": [
{
"resources": [
"server/index.js",
"client/init.js"
],
"matches": [
"https://teams.microsoft.com/*",
"https://app.slack.com/*"
]
}
],
"externally_connectable": {
"ids": [
"ajgfeknmppbopbbebobgeipecjgclbge",
"eilakanollhbgdoppbffeikcbkhmeloc"
],
"matches": [
"https://teams.microsoft.com/*",
"https://app.slack.com/*"
],
"accepts_tls_channel_id": false
}
}