Pronounce: Speech and Pronunciation Checker

Pronounce: Speech and Pronunciation Checker

Speak confidently with instant feedback on any conversation from an AI speech coach.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Pronounce: Speech and Pronunciation Checker",
  "version": "2.0.26",
  "description": "Speak confidently with instant feedback on any conversation from an AI speech coach.",
  "background": {
    "service_worker": "background.js"
  },
  "author": "Pronounce",
  "homepage_url": "https://getpronounce.com/",
  "short_name": "Pronounce Extension",
  "action": {
    "default_title": "Pronounce Extension",
    "default_icon": {
      "16": "/images/iconDefault.png",
      "48": "/images/[email protected]",
      "128": "/images/[email protected]"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.js",
        "/images/premium_bg.jpg",
        "/images/voice/flags_sprite.png",
        "/images/voice/voice_sprite.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "scripting",
    "management"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; media-src *;"
  },
  "externally_connectable": {
    "matches": [
      "https://app.getpronounce.com/*"
    ]
  },
  "icons": {
    "16": "/images/iconDefault.png",
    "48": "/images/[email protected]",
    "128": "/images/[email protected]"
  },
  "commands": {
    "runReadStop": {
      "suggested_key": "Alt+P",
      "description": "Start/stop reading"
    },
    "_execute_action": {
      "suggested_key": "Alt+Shift+P",
      "description": "Toggle extension"
    }
  }
}