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 là gì?

Better Gmail Buttons là một tiện ích mở rộng Chrome được phát triển bởi http://michaelkjeldsen.com, và tính năng chính của nó là "Improve the usability of the Gmail buttons. Avoid marking valid email as spam by mistake, since Gmail fails to distinguish those two".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Better Gmail Buttons

Tải xuống các tệp mở rộng Better Gmail Buttons dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Better Gmail Buttons Better Gmail Buttons
ID oimjnhhjpclnbkbabnbjehaomegeabbo
URL Chính Thức https://chrome.google.com/webstore/detail/better-gmail-buttons/oimjnhhjpclnbkbabnbjehaomegeabbo
Mô tả Improve the usability of the Gmail buttons. Avoid marking valid email as spam by mistake, since Gmail fails to distinguish those two
Kích Thước Tệp 215 KB
Số Lần Cài Đặt 474
Phiên Bản Hiện Tại 0.3.2
Cập Nhật Lần Cuối 2015-11-28
Ngày Phát Hành 2015-11-28
Đánh Giá 3.80/5 Tổng số 10 Đánh Giá
Nhà Phát Triển http://michaelkjeldsen.com
Loại Thanh Toán free
Trang Web Mở Rộng http://michaelkjeldsen.com/web/better-gmail-buttons-userstyles/
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}