Hide My Email for Gmail™

Hide your emails in Gmail™ to focus and get in the flow. Unhide them whenever you're ready.

Hide My Email for Gmail™란 무엇입니까?

Hide My Email for Gmail™은(는) Matt Thurmond (Digital Detox NYC)에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide your emails in Gmail™ to focus and get in the flow. Unhide them whenever you're ready."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Hide My Email for Gmail™ 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Now you can hide your emails in Gmail™ whenever you want so you can get in the flow and do more deep work.

## Overview
After you open Gmail™, click the "Hide emails" button to hide your messages. You'll still be able to search Gmail™ and use it as a reference, just without all your emails appearing and distracting you. 

When you're ready to view your the emails in your inbox again, just click "Show emails". 

This extension only works if you use the Gmail™ website on chrome. It doesn't work if you're using the Gmail™ desktop app. 

## View the code
https://github.com/mthurmond/hide-my-email-for-gmail

## More helpful extensions
Try my other two extensions to remove distractions. Both are free & open source: 
- Distraction free for Linkedin™:   https://chrome.google.com/webstore/detail/distraction-free-for-link/kigfnbfbpfpgphbocdkmeablbgdbpfke

- Slack hider:   https://chrome.google.com/webstore/detail/slack-hider/ojfkenmmieminleikclgocedgpggeecp                    

확장 프로그램 기본 정보

이름 Hide My Email for Gmail™ Hide My Email for Gmail™
ID koobmglbcddgeoopgphanmhjppfaehaa
공식 URL https://chromewebstore.google.com/detail/hide-my-email-for-gmail/koobmglbcddgeoopgphanmhjppfaehaa
설명 Hide your emails in Gmail™ to focus and get in the flow. Unhide them whenever you're ready.
파일 크기 50.95 KB
설치 횟수 82
현재 버전 2.3
최근 업데이트 2023-01-05
출시 날짜 2021-02-02
평점 5.00/5 총 4 개의 평점
개발자 Matt Thurmond (Digital Detox NYC)
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mthurmond/hide-my-email-for-gmail
도움말 페이지 URL https://github.com/mthurmond/hide-my-email-for-gmail/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide My Email for Gmail\u2122",
    "version": "2.3",
    "description": "Hide your emails in Gmail\u2122 to focus and get in the flow. Unhide them whenever you're ready.",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/mail\/*"
            ],
            "css": [
                "hider\/hider-button.css"
            ],
            "js": [
                "hider\/hider.js"
            ]
        }
    ]
}