Phonetic Lookup (for American English)

Phonetic Lookup (for American English)

Select any text to see its IPA transcription and to hear its pronunciation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Jarosław Foksa",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": "icon-38.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Select any text to see its IPA transcription and to hear its pronunciation.",
  "icons": {
    "38": "icon-38.png",
    "128": "icon-128.png",
    "512": "icon-512.png"
  },
  "manifest_version": 3,
  "name": "Phonetic Lookup (for American English)",
  "permissions": [],
  "host_permissions": [],
  "short_name": "Phonetic Lookup",
  "version": "1.2"
}