Web Messenger

Access to WhatsApp official Web messenger in a standalone sandboxed window

Web Messenger란 무엇입니까?

Web Messenger은(는) tlintspr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Access to WhatsApp official Web messenger in a standalone sandboxed window"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        The "Web Messenger" extension brings the official WhatsApp web service as a standalone sandboxed window. You will get unread count badge notifications on your browser windows.

Features:
1. Access the official messenger in a sandboxed window
2. Control whether notifications are silent or not
3. Get badge counter on the action button

Please note that this application only loads the official WhatsApp web interface inside a standalone window. There is no intention of misleading users that this is the official application. This app only tries to make access to the official web service simpler. To use WhatsApp Web, you need to read the terms and conditions from https://www.whatsapp.com/legal/

To connect WhatsApp Messenger to your cellphone, please read: https://www.whatsapp.com/faq/en/web/28080003                    

확장 프로그램 기본 정보

이름 Web Messenger Web Messenger
ID infelompnbbancffeibkenmdbbmpoged
공식 URL https://chromewebstore.google.com/detail/web-messenger/infelompnbbancffeibkenmdbbmpoged
설명 Access to WhatsApp official Web messenger in a standalone sandboxed window
파일 크기 44.95 KB
설치 횟수 35,396
현재 버전 0.3.0
최근 업데이트 2021-07-14
출시 날짜 2018-12-10
평점 3.90/5 총 554 개의 평점
개발자 tlintspr
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/cluclead/panel-view
도움말 페이지 URL https://github.com/cluclead/panel-view
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.3.0",
    "name": "Web Messenger",
    "description": "Access to WhatsApp official Web messenger in a standalone sandboxed window",
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png"
    },
    "homepage_url": "https:\/\/add0n.com\/whatsapp-messenger.html",
    "permissions": [
        "storage"
    ],
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/web.whatsapp.com\/"
            ],
            "js": [
                "data\/inject.js"
            ],
            "css": [
                "data\/inject.css"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "data\/window\/home.svg",
                "data\/window\/reload.svg",
                "data\/window\/settings.svg",
                "data\/dom.js"
            ],
            "matches": [
                "*:\/\/web.whatsapp.com\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "data\/options\/index.html"
    }
}