Speech Recognition Anywhere 365

Speech Recognition Anywhere 365

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.14",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkRLElGTu/RdF0sTofeFQIlqMtKoe4Jw2XKsrTUwP3tCKsAvpdIMG+Vz3qVb/kJVBfQjMBwXHSEuwE+qxEl51pPl9PPZ23h+sX9vk6voxzt8Sl1vpg8eYph/mr2wj4wNGIv385bavkYObZp6fn3BqL3WpqffOUcuTNC2aQfdWPxInGT2FlzMZri94P3iO9dsy6RMJGYbwYr1QcWQkA7Akf750iuwFYa4tLIIO+XBYE8l22AglfhYLJidaXIKxVcVHxdXX29rEOSmiRC2ewEUV4GqM/OjIHpL9yYSGZ+yFv4LO5saU+m7adPwfMqLsmbWfeiqu2z8bmrXI/vlBGAgunQIDAQAB",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "images/redmicrophone16.png",
    "48": "images/redmicrophone48.png",
    "128": "images/redmicrophone128.png"
  },
  "permissions": [
    "scripting",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "identity",
    "identity.email",
    "tabs",
    "clipboardWrite",
    "clipboardRead",
    "storage",
    "unlimitedStorage",
    "activeTab",
    "idle",
    "power"
  ],
  "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"
      }
    ]
  },
  "action": {
    "default_icon": "images/redmicrophone38.png",
    "default_title": "__MSG_appName__"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+S"
      },
      "description": "Open"
    }
  },
  "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"
    }
  ]
}