Accents

Accents

You can now write stressed vowels without copypasting them from other sources.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Accents",
  "description": "You can now write stressed vowels without copypasting them from other sources.",
  "version": "1.0.1",
  "browser_action": {
    "default_icon": "off-32.png",
    "default_title": "Accents"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "scripts/jquery.min.js",
        "scripts/content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "html/iframe/*"
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://www.gstatic.com/; object-src 'self'"
}