SignDoc DeviceConnector

SignDoc DeviceConnector

This extension enables the web-based capturing of signatures and images.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.0.12",
  "icons": {
    "16": "deviceconnector16.png",
    "48": "deviceconnector48.png",
    "128": "deviceconnector128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "permissions": [
    "nativeMessaging",
    "management"
  ]
}