Template

Template

Quickly and easily copies info on the current page using a simple and unique template system

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "page": "pages/background.html"
  },
  "browser_action": {
    "default_icon": "images/icon_19.png",
    "default_popup": "pages/popup.html",
    "default_title": "__MSG_name__"
  },
  "content_scripts": [
    {
      "js": [
        "lib/content.js"
      ],
      "matches": [
        "file:///*/*",
        "ftp://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "lib/install.js"
      ],
      "matches": [
        "http://*.template-extension.org/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "vendor/oauth2_inject.js"
      ],
      "matches": [
        "http://template-extension.org/robots.txt*",
        "http://www.google.com/robots.txt*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "pages/oauth2.html"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com https://*.uservoice.com; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_description__",
  "homepage_url": "http://template-extension.org",
  "icons": {
    "16": "images/icon_16.png",
    "19": "images/icon_19.png",
    "24": "images/icon_24.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "64": "images/icon_64.png",
    "72": "images/icon_72.png",
    "96": "images/icon_96.png",
    "128": "images/icon_128.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "28",
  "name": "__MSG_name__",
  "options_page": "pages/options.html",
  "permissions": [
    "clipboardRead",
    "clipboardWrite",
    "contextMenus",
    "cookies",
    "geolocation",
    "notifications",
    "tabs",
    "<all_urls>"
  ],
  "version": "1.2.9"
}