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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}