Speech Recognition for AutoScroll

Speech Recognition for AutoScroll

Voice recognition-enabled Google Chrome Extension to automatically scroll your web pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Speech Recognition for AutoScroll",
  "description": "Voice recognition-enabled Google Chrome Extension to automatically scroll your web pages.",
  "manifest_version": 2,
  "version": "1.0",
  "offline_enabled": false,
  "browser_action": {
    "default_icon": "img/enabled.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "128": "img/icon.png"
  },
  "permissions": [
    "tabs",
    "*://*/*",
    "<all_urls>"
  ]
}