Speech Recognition Anywhere

Speech Recognition Anywhere

Use Voice Recognition to fill out forms and dictate email with speech to text. Control the Internet with custom voice commands!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "short_name": "__MSG_shortName__",
  "author": "Jeff Baker",
  "version": "1.7.21",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiEjqvsFz2nJj+93HY51mT7bnM765gZEuv+j9XcoXAfDJmd8AY2KK7o93hnyi1LUbA6ijQHsqziBbSpzppaI5gERSA5o4XeP8SfvazFwMDZMMFLuHNgpw7f1E0Tl7Db27LEPxfrYYPoV9BoOmeQIOSJw78fB06nCtuLvEsew5XVzEvzWJ2RmzcL/+39pZBwYAaRLeYwYHgR7qxpdBYyzk/5kkZ/70QmlKTPJ2Gxrsaam34ENKBswk+WAzu7CkhqoBJgcgOqQHITsZekGwsbxWJwb30Bd103j/zrwDFWicshTDwgKpGUXtVHnunl/K39yiok2GxDqHWX0XzsGFhC5CuQIDAQAB",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "images/microphone16.png",
    "48": "images/microphone48.png",
    "128": "images/microphone128.png"
  },
  "permissions": [
    "scripting",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "identity",
    "identity.email",
    "tabs",
    "clipboardWrite",
    "clipboardRead",
    "storage",
    "unlimitedStorage",
    "activeTab",
    "idle",
    "power",
    "nativeMessaging"
  ],
  "host_permissions": [
    "*://www.seabreezecomputers.com/*",
    "*://seabreezecomputers.com/*",
    "*://192.168.1.5/*",
    "<all_urls>"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rule1.json"
      }
    ]
  },
  "oauth2": {
    "client_id": "767741953283-p884ke9l5gavqk2f0a5m7bgjstmvpbm8.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/chromewebstore.readonly"
    ]
  },
  "action": {
    "default_icon": "images/microphone38.png",
    "default_title": "__MSG_appName__"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+S"
      },
      "description": "Open"
    },
    "start-stop": {
      "suggested_key": {
        "default": "Ctrl+Shift+5"
      },
      "description": "__MSG_start_stop__",
      "global": true
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "storage.js",
        "content.js",
        "keypress.js",
        "googleDocsUtil.js"
      ],
      "css": [],
      "all_frames": true,
      "run_at": "document_end"
    }
  ]
}