EqualFill: Free Text Expander

EqualFill: Free Text Expander

An elegant text expander with autofill. Just press "==".

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_EXTENSION_NAME__",
  "short_name": "__MSG_EXTENSION_SHORT_NAME__",
  "description": "__MSG_EXTENSION_DESCRIPTION__",
  "default_locale": "en",
  "version": "1.2.1",
  "manifest_version": 3,
  "action": {},
  "background": {
    "service_worker": "equalfill.js"
  },
  "content_scripts": [
    {
      "js": [
        "equalfill.js"
      ],
      "css": [],
      "run_at": "document_end",
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": []
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "storage",
    "tabs",
    "favicon",
    "webNavigation",
    "contextMenus"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/*",
        "/css/*",
        "/assets/*",
        "/_favicon/*",
        "/tinymce/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "/assets/icon-16.png",
    "32": "/assets/icon-32.png",
    "48": "/assets/icon-48.png",
    "128": "/assets/icon-128.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}