Auto Expander for Gmail™
Automatically expands too long mails in Gmail™.
Apa itu Auto Expander for Gmail™?
Auto Expander for Gmail™ adalah ekstensi Chrome yang dikembangkan oleh Jacob "kurtextrem" Groß, dan fitur utamanya adalah "Automatically expands too long mails in Gmail™.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Auto Expander for Gmail™
Unduh file ekstensi Auto Expander for Gmail™ dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Auto Expander for Gmail™ |
ID | ilkidmijegomodfeplfdekbfglhaahba |
URL Resmi | https://chromewebstore.google.com/detail/auto-expander-for-gmail/ilkidmijegomodfeplfdekbfglhaahba |
Deskripsi | Automatically expands too long mails in Gmail™. |
Ukuran File | 10.39 KB |
Jumlah Instalasi | 523 |
Versi Saat Ini | 1.5.0.5 |
Terakhir Diperbarui | 2023-12-03 |
Tanggal Publikasi | 2019-05-25 |
Penilaian | 2.67/5 Total 9 Penilaian |
Pengembang | Jacob "kurtextrem" Groß |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/kurtextrem/Gmail-Auto-Expander |
URL Halaman Bantuan | https://github.com/kurtextrem/Gmail-Auto-Expander/issues/ |
URL Halaman Kebijakan Privasi | https://www.kurtextrem.de/chrome/PRIVACY.html |
Bahasa yang Didukung | 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\/*" ] } |