WhatsApp join to full group

When the group is full, Trying to join again every 15 minutes

Что такое WhatsApp join to full group?

WhatsApp join to full group - это расширение Chrome, разработанное yoel301, и его основная функция - "When the group is full, Trying to join again every 15 minutes".

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

screenshot

Скачать файл CRX расширения WhatsApp join to full group

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

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

                        You want to join the WhatsApp group
But she it full
This extension will help you get into the group effortlessly
Just enter the group invitation address
The extension will check for you every 15 minutes if you can join the group
When there is a place you will receive a notification that you were able to enter                    

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

Название WhatsApp join to full group WhatsApp join to full group
ID aalnhgolpbnnopmfbchloglegighlfed
Официальный URL https://chrome.google.com/webstore/detail/whatsapp-join-to-full-gro/aalnhgolpbnnopmfbchloglegighlfed
Описание When the group is full, Trying to join again every 15 minutes
Размер файла 29.71 KB
Количество установок 368
Текущая Версия 1.2
Последнее Обновление 2021-01-04
Дата публикации 2020-12-29
Рейтинг 4.00/5 Всего 4 оценок
Разработчик yoel301
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WhatsApp join to full group",
    "description": "When the group is full, Trying to join again every 15 minutes",
    "version": "1.2",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "assets\/icons\/group-task.png"
    },
    "permissions": [
        "alarms",
        "tabs",
        "activeTab",
        "storage",
        "activeTab",
        "notifications",
        "https:\/\/chat.whatsapp.com\/*",
        "https:\/\/web.whatsapp.com\/*"
    ],
    "background": {
        "scripts": [
            "assets\/js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.whatsapp.com\/*"
            ],
            "js": [
                "assets\/js\/contact-script.js"
            ],
            "all_frames": true
        }
    ]
}