Focus for Whatsapp Web

Reclaim your productivity.

Focus for Whatsapp Web란 무엇입니까?

Focus for Whatsapp Web은(는) Jeroen Overschie에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reclaim your productivity."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Hides the WhatsApp chat list - so you don't get lost in all your messages.

Stop your flow from getting interrupted by your WhatsApp messages. This extension allows you to message one person, without seeing the entire chat list. Use the search bar and hit enter to open up a single chat.                    

확장 프로그램 기본 정보

이름 Focus for Whatsapp Web Focus for Whatsapp Web
ID bjnibicbhblienknpljadlclofojhpnd
공식 URL https://chromewebstore.google.com/detail/focus-for-whatsapp-web/bjnibicbhblienknpljadlclofojhpnd
설명 Reclaim your productivity.
파일 크기 13.84 KB
설치 횟수 38
현재 버전 1.0
최근 업데이트 2021-03-02
출시 날짜 2021-03-01
평점 5.00/5 총 3 개의 평점
개발자 Jeroen Overschie
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/dunnkers/focus-whatsapp-web
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Focus for Whatsapp Web",
    "version": "1.0",
    "description": "Reclaim your productivity.",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "activeTab",
        "https:\/\/web.whatsapp.com\/*",
        "tabs"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false,
        "chrome_style": true
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "options.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}