Text Blaze: Templates and Snippets

Text Blaze: Templates and Snippets

Create smart text expansions to get more done and streamline your work. Billions of keystrokes saved!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Text Blaze: Templates and Snippets",
  "description": "Create smart text expansions to get more done and streamline your work. Billions of keystrokes saved!",
  "version": "2.15.1",
  "minimum_chrome_version": "115",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage",
    "notifications",
    "clipboardRead",
    "clipboardWrite",
    "contextMenus",
    "<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": {
    "page": "html/background.html",
    "persistent": true
  },
  "browser_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"
    }
  ],
  "web_accessible_resources": [
    "images/*",
    "sounds/*",
    "html/*",
    "js/*",
    "css/*"
  ],
  "omnibox": {
    "keyword": "tb"
  },
  "offline_enabled": true,
  "homepage_url": "https://blaze.today",
  "externally_connectable": {
    "matches": [
      "https://*.blaze.today/*",
      "https://blaze.today/*"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkQOuCJ85+1t/o4/lGxd280D0zm5QzzRPbD/JbQA/PSg3PlunrlhzgT6afC79nLZ4mGGlhFT/xxC8xELw4ubYofFEtnbBHf6F6bd+vFgzN4mVxBGIsZr4t5whWcdnY+WgsXh5Xvuz14ou8TCbuEYNPOkJFxrrb/LlzHRXrVFWWsHipkz4/f9pG1TFYbecLrQBsK4wqVuENtTvXOY1q+7SVqZK007LHCg3naWU0fHR6cN2XFhL2+Ba7eCPN+HhSdBJCKEW7bQaH0dI6wyK0mHAXkgCn8K36mEXT/OduiWwW/UIbbEQKuhu5seG99YJYZ1pNUcMpbGg09+VroaKCDiZAwIDAQAB",
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Space"
      }
    }
  }
}