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
}