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™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Matt Thurmond (Digital Detox NYC) และคุณลักษณะหลักของมันคือ "Hide your emails in Gmail™ to focus and get in the flow. Unhide them whenever you're ready."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hide My Email for Gmail™

ดาวน์โหลดไฟล์ส่วนขยาย Hide My Email for Gmail™ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}