Inspect and view changes in Record Voice Comments in Google Docs - Beep 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": "Record Voice Comments in Google Docs - Beep",
"short_name": "Beep for Google Docs",
"author": "@beepaudio",
"version": "1.27",
"description": "The best way to record voice notes and audio feedback on Google Docs, Sheets, Slides, and Forms.",
"manifest_version": 3,
"permissions": [
"storage",
"activeTab"
],
"background": {
"service_worker": "background.bundle.js",
"type": "module"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"https://docs.google.com/forms/*"
],
"js": [
"forms-content.bundle.js"
],
"run_at": "document_end"
},
{
"matches": [
"https://docs.google.com/document/*",
"https://docs.google.com/presentation/*",
"https://docs.google.com/spreadsheets/*"
],
"js": [
"docs-content.bundle.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"/assets/*"
],
"matches": [
"<all_urls>"
]
}
],
"action": {
"default_popup": "popup.html",
"default_title": "Beep for Google Docs - Settings",
"default_icon": {
"16": "/assets/icon16.png",
"48": "/assets/icon48.png",
"128": "/assets/icon128.png"
}
},
"icons": {
"16": "/assets/icon16.png",
"48": "/assets/icon48.png",
"128": "/assets/icon128.png"
}
}