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是由yoel301开发的Chrome扩展程序,该扩展的主要功能是“When the group is full, Trying to join again every 15 minutes”。

扩展截图

screenshot

下载WhatsApp join to full group扩展crx文件

下载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
        }
    ]
}