IPA Converter

IPA Converter

This chrome extention changes the English words in the text to their IPA.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "IPA Converter",
  "version": "1.0",
  "description": "This chrome extention changes the English words in the text to their IPA.",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "convert.js"
      ]
    }
  ],
  "omnibox": {
    "keyword": "ipa"
  },
  "browser_action": {
    "default_icon": "new_ipa_red.jpg",
    "default_title": "Stop / Start IPA Converter"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    "word2ipa.json"
  ]
}