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…

Co to jest SMSZap Extension?

SMSZap Extension to rozszerzenie Chrome opracowane przez SMSZap, a jego główną funkcją jest „Users can send bulk SMS messages through lists in HubSpot. This will allow users to send mass SMS texts even without access to…”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia SMSZap Extension

Pobierz pliki rozszerzeń SMSZap Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa SMSZap Extension SMSZap Extension
ID edoaedgjmnjbifdbfkblcignlmlmfjlj
Oficjalny URL https://chromewebstore.google.com/detail/smszap-extension/edoaedgjmnjbifdbfkblcignlmlmfjlj
Opis Users can send bulk SMS messages through lists in HubSpot. This will allow users to send mass SMS texts even without access to…
Rozmiar pliku 118 KB
Liczba instalacji 37
Aktualna Wersja 0.5
Ostatnia Aktualizacja 2022-03-09
Data Publikacji 2021-06-29
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper SMSZap
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://www.smszap.com
Adres URL Strony Polityki Prywatności https://www.smszap.com/privacy-policy
Obsługiwane Języki 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\/*"
    ]
}