Web Text Expander: Text Shortcuts & Snippets

Web Text Expander: Text Shortcuts & Snippets

Work smarter and type faster with text shortcuts! Use text expander to turn text snippets into words or sentences anywhere online

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "2024.5.12.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "minimum_chrome_version": "109",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "clipboardRead",
    "clipboardWrite",
    "offscreen",
    "scripting"
  ],
  "optional_permissions": [
    "downloads"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [
        "https://docs.google.com/document/*"
      ],
      "js": [
        "content_script.js"
      ],
      "css": [
        "content_style.css"
      ],
      "all_frames": true,
      "match_origin_as_fallback": true
    },
    {
      "matches": [
        "*://docs.google.com/document/*"
      ],
      "run_at": "document_start",
      "js": [
        "gdocs_enable_annotated_canvas.js"
      ],
      "world": "MAIN"
    },
    {
      "matches": [
        "*://docs.google.com/document/*"
      ],
      "run_at": "document_end",
      "js": [
        "gdocs_content_script.js"
      ],
      "css": [
        "content_style.css"
      ]
    }
  ],
  "icons": {
    "48": "icons/icon48.png",
    "96": "icons/icon96.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png"
    }
  }
}