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文件

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