Snippet

Snippet

Bind frequently used text snippets to short terms, key them in quickly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Snippet",
  "description": "Bind frequently used text snippets to short terms, key them in quickly.",
  "version": "0.1.9",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "author": "Shiven Sinha",
  "icons": {
    "128": "icon128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "convert-name": {
      "suggested_key": {
        "default": "Alt+Shift+P"
      },
      "description": "Convert the key to snippet."
    }
  }
}