Template-it

Template-it

Insert a template into a textarea with just a couple of clicks

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Template-it",
  "description": "Insert a template into a textarea with just a couple of clicks",
  "version": "0.1.0.3",
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "all_frames": true,
      "js": [
        "inboxsdk.js",
        "bundle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "manifest_version": 2,
  "web_accessible_resources": [
    "list-256x256.png",
    "*.svg"
  ],
  "icons": {
    "16": "new-post.png",
    "48": "new-post.png",
    "128": "new-post.png"
  }
}