GMail Unread

Shows an 'Unread' button to filter emails by 'Unread' status.

What is GMail Unread?

GMail Unread is a Chrome extension developed by Dillon Hafer, and its main feature is "Shows an 'Unread' button to filter emails by 'Unread' status.".

Extension Screenshots

screenshot

Download GMail Unread Extension CRX File

Download GMail Unread extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                                            

Extension Basic Information

Name GMail Unread GMail Unread
ID fnjpldipmbkkjobnhfhdngjljhlabieb
Official URL https://chromewebstore.google.com/detail/gmail-unread/fnjpldipmbkkjobnhfhdngjljhlabieb
Description Shows an 'Unread' button to filter emails by 'Unread' status.
File Size 52.41 KB
Installation Count 80
Current Version 1.0
Last Updated 2015-06-08
Publish Date 2015-06-08
Rating 5.00/5 Total 1 Ratings
Developer Dillon Hafer
Payment Type free
Extension Website https://github.com/dillonhafer/gmail-unread
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GMail Unread",
    "version": "1.0",
    "description": "Shows an 'Unread' button to filter emails by 'Unread' status.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "icon-19.png",
        "default_title": "Show unread",
        "default_popup": "popup.html"
    },
    "permissions": [
        "declarativeContent"
    ],
    "content_scripts": [
        {
            "js": [
                "unread.js"
            ],
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2
}