Smart Text Expander

Smart Text Expander

Expand your short text with long descriptive text quickly with help of this Smart Text Expander extension

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.js"
  },
  "action": {
    "default_icon": "icon/icon32.png",
    "default_title": "__MSG_appName__"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/jquery-3.6.0.min.js",
        "js/jquery-ui.min.js",
        "js/content_script.js",
        "js/position-calculator.min.js"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "icon/icon16.png",
    "32": "icon/icon32.png",
    "128": "icon/icon128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "offline_enabled": true,
  "permissions": [
    "storage",
    "unlimitedStorage",
    "contextMenus",
    "scripting",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "version": "1.0.6"
}