Hide My Email for Gmail™

Hide your emails in Gmail™ to focus and get in the flow. Unhide them whenever you're ready.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hide My Email for Gmail™",
  "version": "2.3",
  "description": "Hide your emails in Gmail™ 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"
      ]
    }
  ]
}