Tap to Sign
E-Sign software for car dealerships.
What is Tap to Sign?
Tap to Sign is a Chrome extension developed by https://taptosign.com, and its main feature is "E-Sign software for car dealerships.".
Extension Screenshots
Download Tap to Sign Extension CRX File
Download Tap to Sign extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
The easiest way for your customers to e-sign all their purchase documents! Integrates with any PDF and select dealer software. E-Sign remotely or in-person
Extension Basic Information
Name | |
ID | bejnegmdcklnfcipmkdbmcngioddenpo |
Official URL | https://chromewebstore.google.com/detail/tap-to-sign/bejnegmdcklnfcipmkdbmcngioddenpo |
Description | E-Sign software for car dealerships. |
File Size | 15.53 KB |
Installation Count | 24 |
Current Version | 1.1 |
Last Updated | 2021-09-12 |
Publish Date | 2021-09-04 |
Developer | https://taptosign.com |
[email protected] | |
Payment Type | free |
Extension Website | https://taptosign.com/ |
Help Page URL | https://taptosign.com/ |
Privacy Policy Page URL | https://taptosign.com/privacy.html |
Supported Languages | en |
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:\/\/*\/*" ] } |