IPA translator

IPA translator

French IPA translation for sentences on Duolingo

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "IPA translator",
  "version": "0.2.5",
  "manifest_version": 2,
  "description": "French IPA translation for sentences on Duolingo",
  "background": {
    "scripts": [
      "msqta.orm.min.js",
      "shared.js",
      "apion.js",
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "128": "images/128.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "*://docs.google.com/spreadsheets/*",
    "*://suburbio.github.io/ipa-translator/*",
    "*://*.duolingo.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.duolingo.com/*"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "contentscript.js"
      ],
      "matches": [
        "*://*.duolingo.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "web_accessible_resources": [
    "script.js"
  ]
}