Inspect and view changes in Sprout Chicago Guest Registration source codes across current and past versions
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": "Sprout Chicago Guest Registration",
"version": "1.1",
"description": "Automatically registers Chicago office guests and notifies Workplace Experience about your event.",
"permissions": [
"activeTab"
],
"host_permissions": [
"https://calendar.google.com/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "icon_default.png"
},
"icons": {
"128": "icon_default.png"
},
"content_scripts": [
{
"matches": [
"https://calendar.google.com/calendar/*"
],
"js": [
"contentScript.js"
],
"run_at": "document_idle"
}
]
}