Input Templates for Chrome

Input Templates for Chrome

This extension allows the user to save certain snippts to paste in the browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Input Templates for Chrome",
  "description": "This extension allows the user to save certain snippts to paste in the browser.",
  "version": "1.0",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "/js/jquery-3.2.1.min.js",
      "/js/background.js"
    ]
  }
}