Inspect and view changes in Web2Calendar 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": "Web2Calendar",
"version": "1.0",
"description": "Find events on the current page and add them to Google Calendar.",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkgoIDtZLApRgtacyIwPDGuUBURFsi27TGfi9BZhSz7zbsh4xZAWxilDIBuv3ZKUPX0NalwxgrnCXr4ky17AJHCagp+vRwWH+P/uRTA/rYvLamTpzrUQkrcx52F7qfRP5lLBDGk9VfurTDJW9COx4z87TSm1AqAAQFDRrUNpqhZxKfjBR19aWT4J5Jls5ZqW1yQdcM3fLaaKawryUdJARZvxHDoLHHGmf/BdzpaTWFyzYx/19YcsXkkRTchoMREd9EPqGYLzsJBQc1vAIueF+nfw2sKV5ESv9CP5jgPT0OZCL3faYeFwTceM+eWASDI3lh3A/w1zg0WHSCuepzAgiHQIDAQAB",
"action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"host_permissions": [
"https://www.googleapis.com/*"
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"activeTab",
"scripting",
"identity"
],
"oauth2": {
"client_id": "882377485104-pj8msfm36vbg2mh8cvmarqsnc6d7d39s.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/calendar.events",
"https://www.googleapis.com/auth/calendar.readonly"
]
}
}