Tap to Sign
E-Sign software for car dealerships.
Wat is Tap to Sign?
Tap to Sign is een Chrome-extensie ontwikkeld door https://taptosign.com, en de belangrijkste functie is "E-Sign software for car dealerships.".
Extensie Screenshots
Download het CRX-bestand van de extensie Tap to Sign
Download Tap to Sign-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | bejnegmdcklnfcipmkdbmcngioddenpo |
Officiële URL | https://chromewebstore.google.com/detail/tap-to-sign/bejnegmdcklnfcipmkdbmcngioddenpo |
Beschrijving | E-Sign software for car dealerships. |
Bestandsgrootte | 15.53 KB |
Aantal Installaties | 24 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2021-09-12 |
Publicatiedatum | 2021-09-04 |
Ontwikkelaar | https://taptosign.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://taptosign.com/ |
Help Pagina-URL | https://taptosign.com/ |
URL van de Privacybeleid Pagina | https://taptosign.com/privacy.html |
Ondersteunde Talen | 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:\/\/*\/*" ] } |