{ "manifest_version": 2, "name": "Audio Recorder", "version": "1.0", "description": "Record audio from any webpage.", "permissions": [ "activeTab", "" ], "background": { "scripts": ["background.js"], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": "icon128.png" }, "icons": { "128":"icon128.png" }, "content_scripts": [ { "matches": [""], "js": ["content.js"] } ] }