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é es Better Gmail Buttons?
Better Gmail Buttons es una extensión de Chrome desarrollada por http://michaelkjeldsen.com, y su función principal es "Improve the usability of the Gmail buttons. Avoid marking valid email as spam by mistake, since Gmail fails to distinguish those two".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Better Gmail Buttons
Descarga archivos de extensión Better Gmail Buttons en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | oimjnhhjpclnbkbabnbjehaomegeabbo |
URL Oficial | https://chrome.google.com/webstore/detail/better-gmail-buttons/oimjnhhjpclnbkbabnbjehaomegeabbo |
Descripción | Improve the usability of the Gmail buttons. Avoid marking valid email as spam by mistake, since Gmail fails to distinguish those two |
Tamaño del Archivo | 215 KB |
Cantidad de Instalaciones | 474 |
Versión Actual | 0.3.2 |
Última Actualización | 2015-11-28 |
Fecha de Publicación | 2015-11-28 |
Calificación | 3.80/5 Total de 10 Calificaciones |
Desarrollador | http://michaelkjeldsen.com |
Tipo de Pago | free |
Sitio Web de la Extensión | http://michaelkjeldsen.com/web/better-gmail-buttons-userstyles/ |
Idiomas Soportados | 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" } } |