Inspect and view changes in Michromephone 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": "Michromephone",
"description": "A chrome extension that helps users send messages to their friends from the browser with voice commands",
"version": "1.2",
"manifest_version": 3,
"action": {
"default_popup": "index.html",
"default_title": "Open the popup"
},
"icons": {
"16": "michromephone16.png",
"48": "michromephone16.png",
"128": "michromephone16.png"
},
"permissions": [
"activeTab",
"clipboardWrite",
"storage"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"voiceRecognition.js",
"pageReader.js"
]
}
],
"background": {
"service_worker": "background.js",
"type": "module"
}
}