Paste Email Plus for Quantum

Paste Email Plus for Quantum

Paste Email Plus allows you to paste pre-defined text (pastetext) into any webpage text input field.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Paste Email Plus for Quantum",
  "short_name": "Paste Email Plus WE",
  "description": "Paste pre-defined text into any input field",
  "version": "1.0.2resigned1",
  "author": "Chuck Baker",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "48.0"
    }
  },
  "browser_action": {
    "default_icon": "pep38x38.png",
    "default_title": "Paste Email Plus",
    "browser_style": false
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage",
    "unlimitedStorage",
    "tabs",
    "clipboardRead",
    "clipboardWrite",
    "notifications",
    "http://*/",
    "https://*/"
  ],
  "background": {
    "scripts": [
      "taffy.js",
      "jquery-2.1.4.min.js",
      "jstree.min.js",
      "pepCommon.js",
      "pepBackground.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "taffy.js",
        "pepCommon.js",
        "pepContent.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "pep16x16.png",
    "128": "pep128x128.png"
  },
  "options_ui": {
    "page": "pepOptions.html",
    "open_in_tab": true,
    "browser_style": false
  }
}