Improve your pronunciation score

Improve your pronunciation score

Just highlight any text on any website, listen to the correct pronunciation, and get your pronunciation score instantly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Improve your pronunciation score",
  "version": "1.0.16",
  "description": "Just highlight any text on any website, listen to the correct pronunciation, and get your pronunciation score instantly.",
  "manifest_version": 3,
  "author": "thefluent.me",
  "icons": {
    "16": "static/images/icon16.png",
    "32": "static/images/icon32.png",
    "48": "static/images/icon48.png",
    "128": "static/images/icon128.png"
  },
  "permissions": [
    "contextMenus",
    "notifications"
  ],
  "action": {
    "default_popup": "options.html",
    "default_title": "thefluent.me improve your pronunciation score"
  },
  "background": {
    "service_worker": "static/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://thefluent.me/*"
      ],
      "js": [
        "static/options.js"
      ]
    }
  ]
}