Sloth

Sloth

Voice control of the browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "19.png",
      "48": "48.png"
    },
    "default_title": "Sloth"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "jquery.js",
        "contentscript.js"
      ],
      "css": [
        "css.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self'; connect-src *; img-src *; frame-src *; object-src 'self'",
  "description": "Voice control of the browser",
  "icons": {
    "48": "48.png",
    "64": "64.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "43",
  "name": "Sloth",
  "options_page": "options.html",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "bookmarks",
    "history",
    "pageCapture",
    "clipboardWrite",
    "downloads",
    "sessions",
    "management",
    "<all_urls>"
  ],
  "version": "0.8.2",
  "web_accessible_resources": [
    "iframe.html"
  ]
}