Templates

Templates

Allows to replace text shortcut with saved template by pressing tab button

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Templates",
  "version": "0.9",
  "description": "Allows to replace text shortcut with saved template by pressing tab button",
  "icons": {
    "16": "img/icon16.png",
    "19": "img/icon19.png",
    "24": "img/icon24.png",
    "32": "img/icon32.png",
    "38": "img/icon38.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/libs/mousetrap.changed.js",
        "js/libs/mousetrap-global-bind.js",
        "js/contentScript.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "img/icon16.png",
      "19": "img/icon19.png",
      "24": "img/icon24.png",
      "32": "img/icon32.png",
      "38": "img/icon38.png",
      "48": "img/icon48.png",
      "128": "img/icon128.png"
    },
    "default_popup": "popup.html"
  }
}