WappBot

Automatic answering of incoming messages by means of javascript and using Whatsapp Web

WappBot란 무엇입니까?

WappBot은(는) wappbotarg에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatic answering of incoming messages by means of javascript and using Whatsapp Web"입니다.

확장 프로그램 스크린샷

screenshot

WappBot 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        WappBot, is an extension that allows the automatic answer of all the messages that you receive, by means of Whatsapp Web.

How does it do it?
First you must go to the configuration panel of the extension.
In it you will find 2 sections.

The first is the use of a bot of automatic answer by means of API.
for more details you can visit: https://github.com/boehlergerman/DialogFlow-Nodejs-WappBotAPI

It is important to emphasize, that the same only answers in Spanish.

The second part of the menu, allows to configure WappBot in a personalized way.
In this section, you can enter a message and an associated image (not mandatory).

In order to confirm this configuration, it is required that 3 options have been loaded.
Option 1 - Initial Message: This will be the response that the bot will give to the first message of the chat, that is to say the beginning of the conversation.

Option 2 - Incorrect Message: This message will be the response when the user does not enter an option that is within the configured (see option 3).

Option 3 - Selection of answers: They are the list of options that the user will be able to consult and the answers associated to this option.
It is mandatory to have a selection option and you can have a maximum of 8 selection answers, so in total you can configure 10 automatic messages.

How to use it?
Once the configuration is ready (It is important to have saved the configuration correctly with the "confirm Setting" button).

What you have to do is open the "Whatsapp Web" website.
Once there, you must scan with your cell phone (or virtual machine) the QR code.
Once inside, the bot will start automatically, and you will see how the extension logo changes from black to green.
This means that it is already working, and as soon as you receive a new message, it will answer automatically.

For more details and queries go to:
https://github.com/boehlergerman/WappBot

Please remember that this is an experimental project, which must be used with criteria and without abusing it, the author is not responsible for the misuse of this extension.                    

확장 프로그램 기본 정보

이름 WappBot WappBot
ID kfoipoajagcbedgamieppifonpbhnbkd
공식 URL https://chrome.google.com/webstore/detail/wappbot/kfoipoajagcbedgamieppifonpbhnbkd
설명 Automatic answering of incoming messages by means of javascript and using Whatsapp Web
파일 크기 23.46 KB
설치 횟수 1,000
현재 버전 1.0.0
최근 업데이트 2019-03-10
출시 날짜 2019-03-10
평점 2.71/5 총 7 개의 평점
개발자 wappbotarg
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WappBot",
    "description": "Automatic answering of incoming messages by means of javascript and using Whatsapp Web",
    "version": "1.0.0",
    "author": "Boehler German",
    "homepage_url": "https:\/\/github.com\/boehlergerman\/WappBot",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "nativeMessaging",
        "webRequest",
        "webRequestBlocking",
        "browsingData",
        "https:\/\/*.whatsapp.com\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.whatsapp.com\/"
            ],
            "js": [
                "script\/content_script.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.whatsapp.com\/"
        ]
    },
    "web_accessible_resources": [
        "script\/wappbot.js"
    ],
    "content_security_policy": "script-src 'self' https:\/\/*.whatsapp.com\/; object-src 'self'",
    "browser_action": {
        "default_title": "WappBot",
        "default_icon": {
            "16": "images\/icon32-off.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}