Examine source code of Speak! - Speech-To-Text Smart Dictation

Inspect and view changes in Speak! - Speech-To-Text Smart Dictation source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "version": "1.0.36",
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "default_locale": "en",
  "homepage_url": "https://www.kredor.com/products/speak/",
  "icons": {
    "128": "images/icon-teal-128.png"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "scripting",
    "declarativeContent",
    "activeTab",
    "offscreen"
  ],
  "optional_host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "name": "Speak!",
    "default_icon": {
      "128": "images/icon-teal-128.png"
    },
    "default_title": "__MSG_actions_default_title__"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Z",
        "windows": "Ctrl+Shift+Z",
        "mac": "Ctrl+Shift+X",
        "chromeos": "Ctrl+Shift+Z",
        "linux": "Ctrl+Shift+Z"
      }
    },
    "toggle_language": {
      "description": "Toggle language",
      "suggested_key": {
        "default": "Ctrl+Space",
        "mac": "Ctrl+Shift+Space"
      }
    },
    "toggle_dictation": {
      "description": "Toggle the extension (alternative)",
      "suggested_key": {
        "default": "Ctrl+Shift+X",
        "mac": "Ctrl+Shift+Z"
      }
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "*.svg",
        "*.mp4",
        "audio/*.wav",
        "audio/*.mp3",
        "audio/*.mov",
        "images/*",
        "images/most-used-apps/*.svg",
        "styles/*",
        "contexts/*/*.json",
        "iframe.html",
        "iframe.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_page": "options.html",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}