Whatsapp Bulk Sender

send dynamic messages to your customers automatically through WhatsApp web

Co to jest Whatsapp Bulk Sender?

Whatsapp Bulk Sender to rozszerzenie Chrome opracowane przez Ahmed Saeed, a jego główną funkcją jest „send dynamic messages to your customers automatically through WhatsApp web”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Whatsapp Bulk Sender

Pobierz pliki rozszerzeń Whatsapp Bulk Sender 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

                        Connect your customers easily on WhatsApp.
avoid the hassle of saving all numbers on your phone. 
messages will be sent even if numbers are not saved on phonebook.

Features:
- send customized text message with contact name.
- send all types of attachments.
- simple & friendly UI and easy to set without too much complicated settings.
- Random delay settings and sending in batch.
- Full control over the sending process and clear reporting.                    

Podstawowe informacje o rozszerzeniu

Nazwa Whatsapp Bulk Sender Whatsapp Bulk Sender
ID iinnnhhgejeckhhocdikihlgnfpfiikp
Oficjalny URL https://chrome.google.com/webstore/detail/whatsapp-bulk-sender/iinnnhhgejeckhhocdikihlgnfpfiikp
Opis send dynamic messages to your customers automatically through WhatsApp web
Rozmiar pliku 183 KB
Liczba instalacji 81
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2022-08-14
Data Publikacji 2022-05-04
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Ahmed Saeed
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://autotaskbots.com/downloads/whatsapp-bulk-sender/
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Whatsapp Bulk Sender",
    "description": "send dynamic messages to your customers automatically through WhatsApp web",
    "version": "1.0.3",
    "manifest_version": 3,
    "action": {
        "default_title": "Whatsapp Bulk Sender",
        "default_icon": {
            "16": "images\/logo 16.png",
            "32": "images\/logo 32.png",
            "48": "images\/logo 48.png",
            "128": "images\/logo 128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/"
            ],
            "js": [
                "country_codes.js",
                "whatsapp.js",
                "main.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/softwarekeys.herokuapp.com\/*",
        "https:\/\/*.whatsapp.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "popup.js"
            ],
            "matches": [
                "https:\/\/softwarekeys.herokuapp.com\/*"
            ]
        }
    ]
}