Examine source code of Speechify for Edge

Inspect and view changes in Speechify for Edge 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
{
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "manifest_version": 2,
  "name": "Speechify for Edge",
  "author": "Speechify Inc",
  "version": "5.4.1",
  "description": "Listen to any website with Speechify for Edge",
  "icons": {
    "16": "images/icon-light-square-16.png",
    "32": "images/icon-light-square-32.png",
    "48": "images/icon-light-square-48.png",
    "128": "images/icon-light-square-128.png"
  },
  "commands": {
    "play-pause": {
      "suggested_key": {
        "mac": "Alt+Q",
        "windows": "Alt+Q",
        "chromeos": "Alt+Q",
        "linux": "Alt+Q"
      },
      "description": "Play/Pause Control"
    }
  },
  "minimum_chrome_version": "40.0",
  "content_security_policy": "script-src 'sha256-Qcd1S5XAuSTIuXH4NgKRf8If0mMbg7uAxcUkCe7azvI=' 'self' https://*.firebaseio.com/ https://api.amplitude.com https://speechify-api-polly.s3.amazonaws.com/ https://files.getspeechify.com/ https://widget.intercom.io/ https://js.intercomcdn.com/ 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "tabs",
    "contextMenus",
    "storage",
    "https://speechifydev.firebaseio.com/",
    "https://*/*",
    "http://*/*",
    "file://*/"
  ],
  "background": {
    "page": "background-wrapper.html",
    "persistence": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-wrapper.js"
      ],
      "css": [
        "css/speechify.css"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "toggleIcon.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://auth.getspeechify.com/*",
      "*://speechify-auth-dev.netlify.app/*",
      "*://app.getspeechify.com/*",
      "*://app.speechify.com/*",
      "*://www.speechify.com/*",
      "*://speechify.com/*",
      "*://speechify-landing-dev.netlify.app/*",
      "*://auth.speechify.com/*"
    ]
  },
  "web_accessible_resources": [
    "content.js",
    "features.json",
    "fonts/*",
    "images/*",
    "audio/*",
    "pdf.worker.js",
    "houdini.js"
  ],
  "browser_action": {}
}