Hide Online for Whatsapp Web

Hide Your Online Status on WhatsApp Web

Hide Online for Whatsapp Web란 무엇입니까?

Hide Online for Whatsapp Web은(는) Odin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide Your Online Status on WhatsApp Web"입니다.

확장 프로그램 스크린샷

screenshot

Hide Online for Whatsapp Web 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        With this extension, you can protect your privacy by hiding your online status on Whatsapp Web. At the same time, by disabling read notifications, the other party cannot see your read notifications while you see the other party's read notifications.                    

확장 프로그램 기본 정보

이름 Hide Online for Whatsapp Web Hide Online for Whatsapp Web
ID jcneeahkklelmgmdhakianajbmolceai
공식 URL https://chromewebstore.google.com/detail/hide-online-for-whatsapp/jcneeahkklelmgmdhakianajbmolceai
설명 Hide Your Online Status on WhatsApp Web
파일 크기 38.09 KB
설치 횟수 1,079
현재 버전 1.0
최근 업데이트 2021-08-01
출시 날짜 2021-08-01
평점 3.67/5 총 3 개의 평점
개발자 Odin
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hide Online for Whatsapp Web",
    "description": "Hide Your Online Status on WhatsApp Web",
    "version": "1.0",
    "icons": {
        "16": "icon-32.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "ws_commons.js",
                "main_wphideonline.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "icon-48.png",
        "default_title": "Hide Online for Whatsapp Web",
        "default_popup": "options.html"
    },
    "permissions": [
        "https:\/\/web.whatsapp.com\/*",
        "declarativeContent",
        "storage"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/web.whatsapp.com\/*"
        ]
    }
}