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.".

Снимки экрана расширения

screenshot

Скачать файл 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                    

Основная информация о расширении

Название Tap to Sign Tap to Sign
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:\/\/*\/*"
    ]
}