Tap to Sign
E-Sign software for car dealerships.
Co to jest Tap to Sign?
Tap to Sign to rozszerzenie Chrome opracowane przez https://taptosign.com, a jego główną funkcją jest „E-Sign software for car dealerships.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Tap to Sign
Pobierz pliki rozszerzeń Tap to Sign w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | bejnegmdcklnfcipmkdbmcngioddenpo |
Oficjalny URL | https://chromewebstore.google.com/detail/tap-to-sign/bejnegmdcklnfcipmkdbmcngioddenpo |
Opis | E-Sign software for car dealerships. |
Rozmiar pliku | 15.53 KB |
Liczba instalacji | 24 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2021-09-12 |
Data Publikacji | 2021-09-04 |
Deweloper | https://taptosign.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://taptosign.com/ |
Adres URL Strony Pomocy | https://taptosign.com/ |
Adres URL Strony Polityki Prywatności | https://taptosign.com/privacy.html |
Obsługiwane Języki | 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:\/\/*\/*" ] } |