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.」です。
拡張機能のスクリーンショット
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™ |
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) |
Eメール | [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" ] } ] } |