GMail Unread

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

Cos'è GMail Unread?

GMail Unread è un'estensione di Chrome sviluppata da Dillon Hafer, e la sua funzione principale è "Shows an 'Unread' button to filter emails by 'Unread' status.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione GMail Unread

Scarica i file di estensione GMail Unread in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                                            

Informazioni di Base sull'Estensione

Nome GMail Unread GMail Unread
ID fnjpldipmbkkjobnhfhdngjljhlabieb
URL Ufficiale https://chromewebstore.google.com/detail/gmail-unread/fnjpldipmbkkjobnhfhdngjljhlabieb
Descrizione Shows an 'Unread' button to filter emails by 'Unread' status.
Dimensione del File 52.41 KB
Conteggio Installazioni 80
Versione Corrente 1.0
Ultimo Aggiornamento 2015-06-08
Data di Pubblicazione 2015-06-08
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Dillon Hafer
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/dillonhafer/gmail-unread
Lingue Supportate 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
}