GMail Unread

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

什么是GMail Unread?

GMail Unread是由Dillon Hafer开发的Chrome扩展程序,该扩展的主要功能是“Shows an 'Unread' button to filter emails by 'Unread' status.”。

扩展截图

screenshot

下载GMail Unread扩展crx文件

下载GMail Unread扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                                            

扩展基本信息

名称 GMail Unread GMail Unread
ID fnjpldipmbkkjobnhfhdngjljhlabieb
官方URL https://chromewebstore.google.com/detail/gmail-unread/fnjpldipmbkkjobnhfhdngjljhlabieb
简介 Shows an 'Unread' button to filter emails by 'Unread' status.
文件大小 52.41 KB
安装次数 80
当前版本 1.0
更新时间 2015-06-08
上架时间 2015-06-08
评分 5.00/5 共1次评分
开发者 Dillon Hafer
付费类型 free
扩展官网 https://github.com/dillonhafer/gmail-unread
支持的语言 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
}