Accent Press

Accent Press

Accent Press is a simple Chrome Extension that allows you to easily write accents.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "version": "1.4.1",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon16-transparent.png",
    "48": "icons/icon48-transparent.png",
    "128": "icons/icon128-transparent.png"
  },
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "action": {
    "default_icon": {
      "16": "icons/icon16-transparent.png",
      "48": "icons/icon48-transparent.png",
      "128": "icons/icon128-transparent.png"
    },
    "default_popup": "html/extension_settings.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/inject.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://docs.google.com/*"
      ],
      "js": [
        "js/inject_gdoc.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://accentpress.pandapip1.com/*"
    ]
  }
}