Textpanda: Snippets for Chrome

Textpanda: Snippets for Chrome

Supercharge your writing with Textpanda, enabling rapid text expansion and a crafty clipboard manager at your fingertips.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Textpanda: Snippets for Chrome",
  "version": "1.7.1",
  "description": "Supercharge your writing with Textpanda, enabling rapid text expansion and a crafty clipboard manager at your fingertips.",
  "icons": {
    "16": "./icons/icon16x16.png",
    "32": "./icons/icon32x32.png",
    "48": "./icons/icon48x48.png",
    "128": "./icons/icon128x128.png"
  },
  "side_panel": {
    "default_path": "index.html"
  },
  "background": {
    "service_worker": "./app/background/index.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "./content/index.js"
      ]
    }
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "permissions": [
    "storage",
    "clipboardRead",
    "clipboardWrite",
    "sidePanel",
    "tabs",
    "offscreen"
  ],
  "externally_connectable": {
    "matches": [
      "https://app.textpanda.io/*"
    ]
  },
  "action": {
    "default_title": "Click to open sidebar"
  }
}