NaviVoice: Voice Input Productivity Assistant

NaviVoice: Voice Input Productivity Assistant

Surf the web with just your voice!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "NaviVoice: Voice Input Productivity Assistant",
  "short_name": "NaviVoice",
  "description": "Surf the web with just your voice!",
  "version": "0.2.5",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "browser_action": {
    "default_icon": {
      "48": "images/icon48.png",
      "128": "images/icon.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/jquery-3.1.1.min.js",
        "scripts/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "scripts/jquery-3.1.1.min.js",
      "scripts/background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "tabs",
    "management",
    "http://*/",
    "https://*/",
    "storage"
  ]
}