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

什么是Better Gmail Buttons?

Better Gmail Buttons是由http://michaelkjeldsen.com开发的Chrome扩展程序,该扩展的主要功能是“Improve the usability of the Gmail buttons. Avoid marking valid email as spam by mistake, since Gmail fails to distinguish those two”。

扩展截图

screenshot

下载Better Gmail Buttons扩展crx文件

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

扩展使用说明

                        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.                    

扩展基本信息

名称 Better Gmail Buttons Better Gmail Buttons
ID oimjnhhjpclnbkbabnbjehaomegeabbo
官方URL https://chrome.google.com/webstore/detail/better-gmail-buttons/oimjnhhjpclnbkbabnbjehaomegeabbo
简介 Improve the usability of the Gmail buttons. Avoid marking valid email as spam by mistake, since Gmail fails to distinguish those two
文件大小 215 KB
安装次数 474
当前版本 0.3.2
更新时间 2015-11-28
上架时间 2015-11-28
评分 3.80/5 共10次评分
开发者 http://michaelkjeldsen.com
付费类型 free
扩展官网 http://michaelkjeldsen.com/web/better-gmail-buttons-userstyles/
支持的语言 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"
    }
}