Code template

Code template

This application allows you to copy to the clipboard any pre-prepared code from web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Code template",
  "description": "This application allows you to copy to the clipboard any pre-prepared code from web.",
  "version": "0.3.2",
  "icons": {
    "128": "128.png"
  },
  "browser_action": {
    "default_icon": "128.png",
    "default_title": "Code Template",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "<all_urls>"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-3.1.1.min.js",
        "js/content.js"
      ]
    }
  ]
}