Free Auto Text Expander for Google Chrome™

Free Auto Text Expander for Google Chrome™

Create custom keyboard shortcuts to expand and replace text as you type!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "/js/background-mv3.js"
  },
  "action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png"
    },
    "default_title": "__MSG_BROWSER_ACTION_TITLE__"
  },
  "default_locale": "en",
  "description": "__MSG_EXTENSION_DESCRIPTION__",
  "homepage_url": "https://autotext-expander.freebusinessapps.net/",
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_EXTENSION_NAME__",
  "offline_enabled": true,
  "omnibox": {
    "keyword": "__MSG_KEYWORD_OMNIBAR_TRIGGER__"
  },
  "options_page": "options.html",
  "permissions": [
    "activeTab",
    "storage",
    "unlimitedStorage",
    "scripting",
    "clipboardRead"
  ],
  "short_name": "__MSG_EXTENSION_SHORTNAME__",
  "version": "3.0.6",
  "content_scripts": [
    {
      "js": [
        "/js/third_party/jquery-2.1.1-simplified.min.js",
        "/js/third_party/moment-with-locales.min.js",
        "/js/constants.js",
        "/js/expander.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "run_at": "document_end"
    }
  ]
}