WhatsApp join to full group

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

Hvad er WhatsApp join to full group?

WhatsApp join to full group er en Chrome-udvidelse udviklet af yoel301, og dens hovedfunktion er "When the group is full, Trying to join again every 15 minutes".

Udvidelsesskærmbilleder

screenshot

Download WhatsApp join to full group-udvidelses-CRX-fil

Download WhatsApp join to full group-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn WhatsApp join to full group WhatsApp join to full group
ID aalnhgolpbnnopmfbchloglegighlfed
Officiel URL https://chrome.google.com/webstore/detail/whatsapp-join-to-full-gro/aalnhgolpbnnopmfbchloglegighlfed
Beskrivelse When the group is full, Trying to join again every 15 minutes
Filstørrelse 29.71 KB
Antal Installationer 368
Nuværende Version 1.2
Senest Opdateret 2021-01-04
Udgivelsesdato 2020-12-29
Bedømmelse 4.00/5 Samlet 4 Bedømmelser
Udvikler yoel301
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
        }
    ]
}