Inspect and view changes in Say It So: Add voice comments in Google Docs 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": "Say It So: Add voice comments in Google Docs",
"version": "0.2.2",
"manifest_version": 3,
"description": "Say It Better with Voice Comments in Google Doc. Perfect for - feedback, explanations, and collaboration.",
"icons": {
"1024": "logo-1.png"
},
"permissions": [
"storage",
"identity"
],
"action": {
"default_icon": {
"32": "logo-1.png"
},
"default_popup": "popup.html",
"default_title": "Open this"
},
"content_scripts": [
{
"matches": [
"https://docs.google.com/document/d/*"
],
"css": [
"content.css"
],
"js": [
"content.js",
"lib/wavesurfer.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"oauth2": {
"client_id": "732920155793-j75libqut8hlg7clp31luh3njpkp9hdj.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email"
]
}
}