Mailspeech

Mailspeech

Speech

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Mailspeech",
  "description": "Speech",
  "author": "Aldajo",
  "homepage_url": "https://www.mailspeech.com",
  "short_name": "Mailspeech",
  "version": "1.1.2",
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "images/mailspeech_bw.png"
  },
  "background": {
    "scripts": [
      "background_min.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_global_min.js"
      ],
      "css": [
        "global.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://www.mailspeech.com/*"
      ],
      "js": [
        "content_mailspeech_min.js"
      ],
      "run_at": "document_end"
    }
  ],
  "commands": {
    "toggle-detection": {
      "suggested_key": {
        "default": "Alt+S",
        "mac": "Alt+S"
      },
      "description": "Toggle voice detection"
    },
    "circle-lang": {
      "suggested_key": {
        "default": "Alt+W",
        "mac": "Alt+W"
      },
      "description": "Circle active lang"
    }
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage",
    "tabs",
    "alarms",
    "https://*/*",
    "http://*/*"
  ],
  "web_accessible_resources": [
    "images/*"
  ],
  "icons": {
    "48": "/images/mailspeech_bw.png",
    "128": "/images/mailspeech_bw.png"
  }
}