WA Number Checker

This is a chrome extension for WhatsApp Web. Using this extension you can easily check if a number has WhatsApp enabled on it.

WA Number Checker क्या है?

WA Number Checker mister.aaar द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This is a chrome extension for WhatsApp Web. Using this extension you can easily check if a number has WhatsApp enabled on it."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में WA Number Checker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        WA Number Checker helps you to identify which phone numbers can receive WhatsApp messages and which numbers cannot.

BONUS: It also identifies if its a business account or not.

How to use:
1. Login to "web.whatsapp.com".
2. Click on the extension to activate it.
3. You can enter a list of phone numbers to the input area provided on the left.
4. Press the "Check" button.
5. You can see the results on the area provided on the right.
6. You can toggle the results in CSV or JSON as required.
7. You can copy/download the results with one click.

IMPORTANT: You have to be logged in to your WhatsApp Web for the extension to work.

Disclaimer:
This Chrome plugin is not endorsed or certified WhatsApp Inc.
This is an unofficial enhancement tool for WhatsApp Web.
This software is not to be used against policies of WhatsApp Inc in any manner.

Credits:
Thanks to https://www.iconfinder.com/epiccoders for the awesome WA Icon. This is licensed under https://creativecommons.org/licenses/by/2.5/.                    

एक्सटेंशन की मूल जानकारी

नाम WA Number Checker WA Number Checker
ID egadjdfbcmohcmelgjhfkfkllljacbnp
आधिकारिक URL https://chromewebstore.google.com/detail/wa-number-checker/egadjdfbcmohcmelgjhfkfkllljacbnp
विवरण This is a chrome extension for WhatsApp Web. Using this extension you can easily check if a number has WhatsApp enabled on it.
फ़ाइल का आकार 24.92 KB
स्थापना संख्या 1,296
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2021-03-09
प्रकाशन तिथि 2021-03-08
रेटिंग 1.67/5 कुल 6 रेटिंग्स
डेवलपर mister.aaar
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.0.1",
    "name": "WA Number Checker",
    "description": "This is a chrome extension for WhatsApp Web. Using this extension you can easily check if a number has WhatsApp enabled on it.",
    "icons": {
        "16": "images\/wa_16.png",
        "32": "images\/wa_32.png",
        "48": "images\/wa_48.png",
        "128": "images\/wa_128.png"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "js": [
                "inject.js"
            ],
            "css": [
                "\/ui\/main_builder.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "wapi.js",
        "\/ui\/main_builder.js"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/wa_16.png",
            "32": "images\/wa_32.png",
            "48": "images\/wa_48.png",
            "128": "images\/wa_128.png"
        }
    }
}