Blue Canoe Pronunciation Dictionary

Blue Canoe Pronunciation Dictionary

Learn how to say any English word and be instantly understood, using the award-winning Color Vowel®️ System.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Blue Canoe Learning",
  "manifest_version": 3,
  "name": "Blue Canoe Pronunciation Dictionary",
  "version": "1.2.0",
  "description": "Learn how to say any English word and be instantly understood, using the award-winning Color Vowel®️ System.",
  "icons": {
    "48": "icons/logo_48.png",
    "64": "icons/logo_64.png",
    "96": "icons/logo_96.png",
    "128": "icons/logo_128.png",
    "512": "icons/logo_512.png",
    "1024": "icons/logo_1024.png"
  },
  "options_ui": {
    "page": "options/options.html"
  },
  "action": {
    "default_icon": {
      "19": "icons/logo_19.png",
      "38": "icons/logo_38.png"
    },
    "default_title": "Blue Canoe"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "common/browser-polyfill.js",
        "content_scripts/googleDocsUtil.js",
        "content_scripts/dictionary.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background/background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "audio/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "unlimitedStorage",
    "contextMenus",
    "storage"
  ],
  "host_permissions": [
    "https://www.bluecanoelearning.com/"
  ]
}