IPA Replacer

IPA Replacer

This chrome extention replaces common English words with their IPA.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "IPA Replacer",
  "version": "1.2",
  "description": "This chrome extention replaces common English words with their IPA.",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "convert.js"
      ]
    }
  ],
  "omnibox": {
    "keyword": "ipa"
  },
  "action": {
    "default_icon": "new_ipa_red.jpg",
    "default_title": "Stop / Start IPA Replacer"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "word2ipa.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}