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

Qu'est-ce que Better Gmail Buttons ?

Better Gmail Buttons est une extension Chrome développée par http://michaelkjeldsen.com, et sa fonction principale est "Improve the usability of the Gmail buttons. Avoid marking valid email as spam by mistake, since Gmail fails to distinguish those two".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Better Gmail Buttons

Téléchargez les fichiers d'extension Better Gmail Buttons au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Better Gmail Buttons Better Gmail Buttons
ID oimjnhhjpclnbkbabnbjehaomegeabbo
URL Officiel https://chrome.google.com/webstore/detail/better-gmail-buttons/oimjnhhjpclnbkbabnbjehaomegeabbo
Description Improve the usability of the Gmail buttons. Avoid marking valid email as spam by mistake, since Gmail fails to distinguish those two
Taille du Fichier 215 KB
Nombre d'Installations 474
Version Actuelle 0.3.2
Dernière Mise à Jour 2015-11-28
Date de Publication 2015-11-28
Évaluation 3.80/5 Total 10 Évaluations
Développeur http://michaelkjeldsen.com
Type de Paiement free
Site Web de l'Extension http://michaelkjeldsen.com/web/better-gmail-buttons-userstyles/
Langues Prises en Charge 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"
    }
}