Tap to Sign
E-Sign software for car dealerships.
什麼是Tap to Sign?
Tap to Sign是由https://taptosign.com開發的Chrome擴展程式,該擴展的主要功能是“E-Sign software for car dealerships.”。
擴展截圖
下載Tap to Sign擴展crx文件
下載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 |
官方網址 | 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:\/\/*\/*" ] } |