Accent Mark Helper

Accent Mark Helper

A simple extension that helps a user type letters with accent marks.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Accent Mark Helper",
  "version": "1.0.1",
  "manifest_version": 3,
  "description": "A simple extension that helps a user type letters with accent marks.",
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "exclude_globs": [
        "https://*.babbel.com/*"
      ],
      "js": [
        "src/keypressListener.js"
      ]
    }
  ],
  "icons": {
    "128": "src/128x128-icon.png"
  }
}