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
Co to jest Better Gmail Buttons?
Better Gmail Buttons to rozszerzenie Chrome opracowane przez http://michaelkjeldsen.com, a jego główną funkcją jest „Improve the usability of the Gmail buttons. Avoid marking valid email as spam by mistake, since Gmail fails to distinguish those two”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Better Gmail Buttons
Pobierz pliki rozszerzeń Better Gmail Buttons w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | oimjnhhjpclnbkbabnbjehaomegeabbo |
Oficjalny URL | https://chrome.google.com/webstore/detail/better-gmail-buttons/oimjnhhjpclnbkbabnbjehaomegeabbo |
Opis | Improve the usability of the Gmail buttons. Avoid marking valid email as spam by mistake, since Gmail fails to distinguish those two |
Rozmiar pliku | 215 KB |
Liczba instalacji | 474 |
Aktualna Wersja | 0.3.2 |
Ostatnia Aktualizacja | 2015-11-28 |
Data Publikacji | 2015-11-28 |
Ocena | 3.80/5 Łącznie 10 Oceny |
Deweloper | http://michaelkjeldsen.com |
Typ Płatności | free |
Strona Rozszerzenia | http://michaelkjeldsen.com/web/better-gmail-buttons-userstyles/ |
Obsługiwane Języki | 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" } } |