Form Grabber

Form Grabber

A simple interface to bulk copy/paste form details.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Form Grabber",
  "description": "A simple interface to bulk copy/paste form details.",
  "version": "2.1.0",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAofB/LnQK/fsnEWSKJSNm2Zz7u/BIpQt2WFom2SABrYkAna7Kx2M7T4xv1ZIPQu49MRj2m/v5bJjkS4/ZZxJr2cW23Rb6+LyjKB7TvkXCOv9SPA46IlOVAHGlj5kzTbys4NrWVv2hLnFcTlhsZKhYu/MgVLPBCV3SCaTiZkbV8c1T9W5p1XSiALx3R8b3YMRF4VVpqcQLAuxPL7VntsoUfkm6shdY5+6KSCHaSK0P8rlz+sqXY9SkKoLmVl43vWQyrhUL0MbbP5/eFp4NgqqLFyUAI/1GVKHps8Yg9RqgazC3rf4Vr/nsQgT01s/Nc84eyhNbe+4khjdKvIqeSaycaQIDAQAB",
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com; object-src 'self'",
  "icons": {
    "32": "public/images/fg-colour-logo-vibrant-2.png",
    "48": "public/images/fg-colour-logo-vibrant-2.png",
    "128": "public/images/fg-colour-logo-vibrant-2-aligned-01-01.png"
  },
  "browser_action": {
    "default_icon": "assets/img/icon-19.png",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "background",
    "identity",
    "identity.email",
    "https://www.googleapis.com/*"
  ],
  "oauth2": {
    "client_id": "513090491024-p62jb9kk6nb45aoq9crc7voq6i0kstmo.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/plus.login",
      "https://www.googleapis.com/auth/chromewebstore.readonly"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "public/js/page-compiled.js"
      ],
      "css": [
        "public/css/page.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "*"
  ],
  "background": {
    "scripts": [
      "public/js/background-compiled.js"
    ]
  }
}