SMSZap Extension

Users can send bulk SMS messages through lists in HubSpot. This will allow users to send mass SMS texts even without access to…

Что такое SMSZap Extension?

SMSZap Extension - это расширение Chrome, разработанное SMSZap, и его основная функция - "Users can send bulk SMS messages through lists in HubSpot. This will allow users to send mass SMS texts even without access to…".

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

screenshot
screenshot

Скачать файл CRX расширения SMSZap Extension

Скачайте файлы расширений SMSZap Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Users can send bulk SMS messages through lists in HubSpot. This will allow users to send mass SMS texts even without access to HubSpot automation.                    

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

Название SMSZap Extension SMSZap Extension
ID edoaedgjmnjbifdbfkblcignlmlmfjlj
Официальный URL https://chromewebstore.google.com/detail/smszap-extension/edoaedgjmnjbifdbfkblcignlmlmfjlj
Описание Users can send bulk SMS messages through lists in HubSpot. This will allow users to send mass SMS texts even without access to…
Размер файла 118 KB
Количество установок 37
Текущая Версия 0.5
Последнее Обновление 2022-03-09
Дата публикации 2021-06-29
Рейтинг 5.00/5 Всего 2 оценок
Разработчик SMSZap
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://www.smszap.com
URL страницы политики конфиденциальности https://www.smszap.com/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SMSZap Extension",
    "version": "0.5",
    "icons": {
        "48": "assets\/logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.hubspot.com\/*"
            ],
            "js": [
                "assets\/assets.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/*.hubspot.com\/*"
            ],
            "css": [
                "styles\/smszapStyle.css"
            ],
            "js": [
                "js\/smszapScript.js",
                "js\/ooo-messaging.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background-worker.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*.png",
                "contact.js",
                "\/observers\/*.js"
            ],
            "matches": [
                "*:\/\/*.hubspot.com\/*"
            ]
        }
    ],
    "permissions": [
        "cookies"
    ],
    "host_permissions": [
        "*:\/\/*.hubspot.com\/*"
    ]
}