Auto Expander for Gmail™
Automatically expands too long mails in Gmail™.
Auto Expander for Gmail™ là gì?
Auto Expander for Gmail™ là một tiện ích mở rộng Chrome được phát triển bởi Jacob "kurtextrem" Groß, và tính năng chính của nó là "Automatically expands too long mails in Gmail™.".
Ả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 Auto Expander for Gmail™
Tải xuống các tệp mở rộng Auto Expander for Gmail™ 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
Do you often receive too long mails and you're tired of scrolling to the bottom to open the full mail? "[Message clipped] View entire message" is your foe? Look no further! This extension automatically expands the mails in Gmail™ for you (also works in the new re-designed Gmail!). Update: v1.5.0.3 - fixed various issues (not expanding properly etc) Permissions: Rights to read from Gmail in order to expand the mail. No data collected. Code is open source: https://github.com/kurtextrem/Gmail-Auto-Expander Icon by Boyan Kostov.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Auto Expander for Gmail™ |
ID | ilkidmijegomodfeplfdekbfglhaahba |
URL Chính Thức | https://chromewebstore.google.com/detail/auto-expander-for-gmail/ilkidmijegomodfeplfdekbfglhaahba |
Mô tả | Automatically expands too long mails in Gmail™. |
Kích Thước Tệp | 10.39 KB |
Số Lần Cài Đặt | 523 |
Phiên Bản Hiện Tại | 1.5.0.5 |
Cập Nhật Lần Cuối | 2023-12-03 |
Ngày Phát Hành | 2019-05-25 |
Đánh Giá | 2.67/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | Jacob "kurtextrem" Groß |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/kurtextrem/Gmail-Auto-Expander |
URL Trang Trợ Giúp | https://github.com/kurtextrem/Gmail-Auto-Expander/issues/ |
URL Trang Chính Sách Bảo Mật | https://www.kurtextrem.de/chrome/PRIVACY.html |
Ngôn Ngữ Được Hỗ Trợ | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "1.5.0.5", "manifest_version": 3, "description": "__MSG_extDesc__", "default_locale": "en", "icons": { "128": "icon-128.png", "16": "icon-128.png", "48": "icon-128.png" }, "author": "Jacob \u201ekurtextrem\" Gro\u00df", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "minimum_chrome_version": "88", "host_permissions": [ "*:\/\/mail.google.com\/*" ] } |