Inspect and view changes in Audio Capture For Chrome 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": "Audio Capture For Chrome",
"version": "1.1",
"description": "Easily capture audio from your browser with the built-in microphone, and download the recorded file.",
"permissions": [
"activeTab"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"48": "audio-recorder-48.png",
"128": "audio-recorder-128.png"
}
},
"icons": {
"48": "audio-recorder-48.png",
"128": "audio-recorder-128.png"
},
"web_accessible_resources": [
{
"resources": [
"recorder/index.html",
"recorder/recorder.js"
],
"matches": [
"<all_urls>"
]
}
]
}