Copy Fields

Copy Fields

Copy and paste form fields to another page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Copy Fields",
  "short_name": "copy fields",
  "version": "0.0.0.1",
  "description": "Copy and paste form fields to another page",
  "permissions": [
    "clipboardRead",
    "clipboardWrite",
    "storage",
    "tabs",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "css": [
        "css/copy_style.css"
      ],
      "js": [
        "js/content_script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "images/copy_16x16.png",
    "32": "images/copy_32x32.png",
    "48": "images/copy_48x48.png",
    "128": "images/copy_128x128.png"
  },
  "manifest_version": 2
}