EZ Expand

EZ Expand

Create shortcut keywords that automatically expand to a desired result.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "EZ Expand",
  "manifest_version": 2,
  "version": "0.0.7",
  "description": "Create shortcut keywords that automatically expand to a desired result.",
  "permissions": [
    "https://mail.google.com/*",
    "https://www.linkedin.com/*",
    "https://www.messenger.com/*",
    "storage"
  ],
  "background": {
    "scripts": [
      "scripts/constants.js",
      "scripts/backgroundMessages.js",
      "scripts/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Configure shortcuts",
    "default_popup": "index.html?popup=true",
    "default_icon": "images/ez-48.png"
  },
  "options_page": "index.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "all_frames": true,
      "js": [
        "vendor/scripts/jquery-3.5.0.min.js",
        "scripts/constants.js",
        "scripts/ate.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "images/ez-16.png",
    "32": "images/ez-32.png",
    "48": "images/ez-48.png",
    "64": "images/ez-64.png",
    "128": "images/ez-128.png"
  },
  "content_security_policy": "script-src 'self' 'sha256-N1RRUnFc8tQAy6pmZZTeyF7DkKhvgjeka+FIWLY7IFc=';  object-src 'self'"
}