The extension can change your voice's pitch in real time. For example, when your make a call from chrome, activate the extension…
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": 2,
"name": "Voice Enhancer",
"version": "0.2",
"icons": {
"128": "icon.png"
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "Voice Enhancer",
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/content.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"web_accessible_resources": [
"js/enhancer-processor.js",
"js/enhancer.js"
]
}