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 هو إضافة Chrome تم تطويرها بواسطة http://michaelkjeldsen.com، والميزة الرئيسية لها هي "Improve the usability of the Gmail buttons. Avoid marking valid email as spam by mistake, since Gmail fails to distinguish those two".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Better Gmail Buttons
قم بتنزيل ملفات الامتداد Better Gmail Buttons بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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.
معلومات أساسية عن التمديد
الاسم | |
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" } } |