Text Snippets

Text Snippets

Inserts text into any text field at the click of a button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.2.0",
  "background": {
    "scripts": [
      "js/store.js",
      "js/settings.js",
      "js/menu.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "gfx/icon_16.png",
    "default_title": "Text Snippets Options"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "description": "Inserts text into any text field at the click of a button.",
  "icons": {
    "16": "gfx/icon_16.png",
    "48": "gfx/icon_48.png",
    "128": "gfx/icon_128.png"
  },
  "name": "Text Snippets",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "contextMenus"
  ],
  "content_security_policy": "object-src 'self'; script-src 'self';",
  "manifest_version": 2
}