Tap to Sign
E-Sign software for car dealerships.
Co je Tap to Sign?
Tap to Sign je rozšíření Chrome vyvinuté https://taptosign.com, a jeho hlavní funkcí je „E-Sign software for car dealerships.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Tap to Sign
Stáhněte si soubory rozšíření Tap to Sign ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | |
ID | bejnegmdcklnfcipmkdbmcngioddenpo |
Oficiální URL | https://chromewebstore.google.com/detail/tap-to-sign/bejnegmdcklnfcipmkdbmcngioddenpo |
Popis | E-Sign software for car dealerships. |
Velikost souboru | 15.53 KB |
Počet instalací | 24 |
Aktuální Verze | 1.1 |
Poslední Aktualizace | 2021-09-12 |
Datum Vydání | 2021-09-04 |
Vývojář | https://taptosign.com |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://taptosign.com/ |
URL Stránky Nápovědy | https://taptosign.com/ |
URL Stránky Zásad Ochrany Soukromí | https://taptosign.com/privacy.html |
Podporované Jazyky | 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:\/\/*\/*" ] } |