Transmit chat messages on Google Meet to a Slack channel automatically
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",
"name": "__MSG_extension_name__",
"short_name": "__MSG_extension_short_name__",
"version": "0.2.0",
"manifest_version": 3,
"description": "__MSG_extension_description__",
"homepage_url": "https://github.com/noraworld/cuckoo",
"default_locale": "en",
"icons": {
"16": "img/logo16x16.png",
"48": "img/logo48x48.png",
"128": "img/logo128x128.png"
},
"permissions": [
"tabs",
"storage"
],
"host_permissions": [
"https://slack.com/*"
],
"action": {
"default_title": "__MSG_extension_name__",
"default_popup": "options.html"
},
"options_ui": {
"page": "options.html"
},
"background": {
"service_worker": "js/background.js"
},
"content_scripts": [
{
"matches": [
"https://meet.google.com/*"
],
"js": [
"js/constant.js",
"js/script.js"
],
"all_frames": true
}
]
}