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 |
官方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:\/\/*\/*" ] } |