Autotype - Free Text Expander

Autotype - Free Text Expander

Eliminate repetitive typing with shortcuts and boost your productivity.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Autotype - Free Text Expander",
  "short_name": "Autotype",
  "version": "1.0.8",
  "description": "Eliminate repetitive typing with shortcuts and boost your productivity.",
  "icons": {
    "16": "images/logo-16x16.png",
    "32": "images/logo-32x32.png",
    "48": "images/logo-48x48.png",
    "128": "images/logo-128x128.png"
  },
  "permissions": [
    "clipboardRead",
    "contextMenus",
    "storage",
    "unlimitedStorage"
  ],
  "action": {
    "default_title": "Click to open dashboard"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/main.css"
      ]
    },
    {
      "all_frames": true,
      "match_about_blank": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/main.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "resources": [
        "search/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://app.autotype.ai/*"
    ]
  }
}