Better Gmail Buttons

Improve the usability of the Gmail buttons. Avoid marking valid email as spam by mistake, since Gmail fails to distinguish those two

Cos'è Better Gmail Buttons?

Better Gmail Buttons è un'estensione di Chrome sviluppata da http://michaelkjeldsen.com, e la sua funzione principale è "Improve the usability of the Gmail buttons. Avoid marking valid email as spam by mistake, since Gmail fails to distinguish those two".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Better Gmail Buttons

Scarica i file di estensione Better Gmail Buttons 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

                        Gmails buttons are all visually identical, which makes it too easy to hit the wrong one. Frustrated by the number of times I hit the SPAM-button rather than the DELETE-button as intended, I made this light weight Chrome extension to make the buttons easier to distinguish.                    

Informazioni di Base sull'Estensione

Nome Better Gmail Buttons Better Gmail Buttons
ID oimjnhhjpclnbkbabnbjehaomegeabbo
URL Ufficiale https://chrome.google.com/webstore/detail/better-gmail-buttons/oimjnhhjpclnbkbabnbjehaomegeabbo
Descrizione Improve the usability of the Gmail buttons. Avoid marking valid email as spam by mistake, since Gmail fails to distinguish those two
Dimensione del File 215 KB
Conteggio Installazioni 474
Versione Corrente 0.3.2
Ultimo Aggiornamento 2015-11-28
Data di Pubblicazione 2015-11-28
Valutazione 3.80/5 Totale 10 Valutazioni
Sviluppatore http://michaelkjeldsen.com
Tipo di Pagamento free
Sito Web dell'Estensione http://michaelkjeldsen.com/web/better-gmail-buttons-userstyles/
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better Gmail Buttons",
    "short_name": "betterbutton",
    "version": "0.3.2",
    "manifest_version": 2,
    "description": "Improve the usability of the Gmail buttons. Avoid marking valid email as spam by mistake, since Gmail fails to distinguish those two",
    "browser_action": {
        "default_icon": "better-gmail-buttons128-xmas.png",
        "default_popup": "popup.htm",
        "default_title": "Better Gmail Buttons"
    },
    "homepage_url": "http:\/\/michaelkjeldsen.com\/bettergmailbuttons\/",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "jquery-1.7.2.min.js",
                "core.js"
            ],
            "css": [
                "core.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "32": "better-gmail-buttons32-xmas.png",
        "48": "better-gmail-buttons48-xmas.png",
        "64": "better-gmail-buttons64-xmas.png",
        "128": "better-gmail-buttons128-xmas.png",
        "256": "better-gmail-buttons256-xmas.png"
    }
}