Text Blaze: Templates and Snippets

Create smart text expansions to get more done and streamline your work. Billions of keystrokes saved!
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Text Blaze: Templates and Snippets",
  "description": "Create smart text expansions to get more done and streamline your work. Billions of keystrokes saved!",
  "version": "3.1.18",
  "minimum_chrome_version": "126",
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage",
    "clipboardRead",
    "clipboardWrite",
    "contextMenus",
    "offscreen",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "64": "images/icon_64.png",
    "96": "images/icon_96.png",
    "128": "images/icon_128.png"
  },
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "16": "images/icon_16.png",
      "32": "images/icon_32.png",
      "48": "images/icon_48.png",
      "64": "images/icon_64.png",
      "96": "images/icon_96.png",
      "128": "images/icon_128.png"
    },
    "default_title": "Text Blaze"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/widget.js",
        "js/inPageNotifier.js",
        "js/contentScript.js"
      ],
      "match_about_blank": true,
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "sandbox": {
    "pages": [
      "html/sandbox.html",
      "html/formLoader.html"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/tbremap.js",
        "images/icon_128.png",
        "images/icon_128_white_bottom.png",
        "images/bg.svg",
        "css/widget.css",
        "css/picker.css",
        "css/notifier.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "omnibox": {
    "keyword": "tb"
  },
  "offline_enabled": true,
  "homepage_url": "https://blaze.today",
  "externally_connectable": {
    "matches": [
      "https://*.blaze.today/*",
      "https://blaze.today/*"
    ]
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Space"
      }
    }
  },
  "content_security_policy": {
    "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals allow-popups-to-escape-sandbox; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}