Trimless for Google Mail™
Automatically shows trimmed content in Google Mail™.
Trimless for Google Mail™ là gì?
Trimless for Google Mail™ là một tiện ích mở rộng Chrome được phát triển bởi Alec Mev, và tính năng chính của nó là "Automatically shows trimmed content in Google Mail™.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Trimless for Google Mail™
Tải xuống các tệp mở rộng Trimless for Google Mail™ dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Expands trimmed parts, removes "Show trimmed content" buttons, sets trimmed text's color to light gray and indents it to the right. Restores clipped messages as well. You can switch it on and off by simply clicking the scissors icon in the address bar. The color and the size of indentation are fully customizable. Tinker with the source code on GitHub: http://bit.ly/YDmt1z Buy me some ice cream via PayPal: http://bit.ly/15maUAa
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Trimless for Google Mail™ |
ID | niepjjjfafhadmfdminbckmciijcaagc |
URL Chính Thức | https://chromewebstore.google.com/detail/trimless-for-google-mail/niepjjjfafhadmfdminbckmciijcaagc |
Mô tả | Automatically shows trimmed content in Google Mail™. |
Kích Thước Tệp | 88.72 KB |
Số Lần Cài Đặt | 30,000 |
Phiên Bản Hiện Tại | 1.11.1 |
Cập Nhật Lần Cuối | 2019-05-29 |
Ngày Phát Hành | 2019-05-29 |
Đánh Giá | 3.99/5 Tổng số 93 Đánh Giá |
Nhà Phát Triển | Alec Mev |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/jeremejevs/trimless-gmail |
URL Trang Trợ Giúp | https://github.com/jeremejevs/trimless-gmail/issues |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trimless for Google Mail\u2122", "version": "1.11.1", "description": "Automatically shows trimmed content in Google Mail\u2122.", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "page_action": { "default_title": "Trimless", "default_icon": { "19": "images\/icon-action-19.png", "38": "images\/icon-action-38.png" } }, "background": { "scripts": [ "vendor\/tinycolor-1.4.1.min.js", "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/mail\/*" ], "js": [ "vendor\/jquery-3.3.1.min.js", "contentScript.js" ], "run_at": "document_start" } ], "options_ui": { "chrome_style": true, "page": "options.html" }, "permissions": [ "storage" ], "short_name": "Trimless Gmail", "applications": { "gecko": { "id": "[email protected]" } } } |