Tap to Sign
E-Sign software for car dealerships.
Tap to Signคืออะไร?
Tap to Sign เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://taptosign.com และคุณลักษณะหลักของมันคือ "E-Sign software for car dealerships."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tap to Sign
ดาวน์โหลดไฟล์ส่วนขยาย Tap to Sign ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | bejnegmdcklnfcipmkdbmcngioddenpo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tap-to-sign/bejnegmdcklnfcipmkdbmcngioddenpo |
คำอธิบาย | E-Sign software for car dealerships. |
ขนาดไฟล์ | 15.53 KB |
จำนวนการติดตั้ง | 24 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2021-09-12 |
วันที่เผยแพร่ | 2021-09-04 |
ผู้พัฒนา | https://taptosign.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://taptosign.com/ |
URL หน้าช่วยเหลือ | https://taptosign.com/ |
URL หน้านโยบายความเป็นส่วนตัว | https://taptosign.com/privacy.html |
ภาษาที่รองรับ | 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:\/\/*\/*" ] } |