Tap to Sign

Tap to Sign

E-Sign software for car dealerships.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tap to Sign",
  "description": "E-Sign software for car dealerships.",
  "version": "1.1",
  "action": {
    "default_icon": "icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "externally_connectable": {
    "matches": [
      "https://*.taptosign.com/*",
      "https://*.dealercenter.net/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.dealercenter.net/*"
      ],
      "js": [
        "addButton.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "checkPdf.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.taptosign.com/*"
      ],
      "js": [
        "initial.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://www.scsautoexpress.com/scs.dap.rvt/ContractListPanel.aspx?*"
      ],
      "js": [
        "autoexpress.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "cookies",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "file://*/*"
  ]
}