Inspect and view changes in CaptionSaver Pro for Google Meet 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",
"name": "CaptionSaver Pro for Google Meet",
"version": "1.9",
"description": "Save live caption transcripts from Google Meet",
"permissions": [
"alarms",
"tabs",
"storage",
"identity",
"https://www.googleapis.com/*",
"https://licensekit.io/*"
],
"content_security_policy": "script-src 'self' https://www.gstatic.com/ https://www.googleapis.com; object-src 'self'",
"oauth2": {
"client_id": "1047178326222-heuqqt41bu16t8b3tt28l4vjv8oomdd3.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/drive.file"
]
},
"options_page": "options.html",
"background": {
"scripts": [
"js/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"*://meet.google.com/*-*-*",
"*://meet.google.com/new"
],
"js": [
"js/main.js"
],
"run_at": "document_idle"
}
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/captionsaver_16.png",
"32": "images/captionsaver_32.png",
"48": "images/captionsaver_48.png",
"128": "images/captionsaver_128.png"
}
},
"icons": {
"16": "images/captionsaver_16.png",
"32": "images/captionsaver_32.png",
"48": "images/captionsaver_48.png",
"128": "images/captionsaver_128.png"
},
"manifest_version": 2,
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAq9uawzkqNMJVjFWBNN227u7+yWObfUQq2GrioESe4f//ZeU/MvNEwGWu6EQyY4lpH/hHZK7houKAu3trt2o1PrgqpdjY1Cyqw+k4paaAEWcHwDofI5qtlDUfWtbqF9wBRWGM8tuEMc84y8eGI5pvkuHPYvOQgT1bPZQYn+IinORJpuaME1GygHWBMPgwwIOZEWnFrcBEUVTeRUNAz/5BgB4JfswpgumUHc8wl/Nvly+tF1CFLxx4ppEs4OPD/uIyUYJasW6ocOrNN0yXnL3QnXN+m1wrAec+ySgNl1khh5cehbf7jkj90nRBOetjK01QtOUDABv/ooIuLSps4NJgcQIDAQAB"
}