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”。
擴展截圖
下載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.
擴展基本資訊
名稱 | |
ID | oimjnhhjpclnbkbabnbjehaomegeabbo |
官方網址 | 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" } } |