Auto Expander for Gmail™

Automatically expands too long mails in Gmail™.

Auto Expander for Gmail™คืออะไร?

Auto Expander for Gmail™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jacob "kurtextrem" Groß และคุณลักษณะหลักของมันคือ "Automatically expands too long mails in Gmail™."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Expander for Gmail™

ดาวน์โหลดไฟล์ส่วนขยาย Auto Expander for Gmail™ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Auto Expander for Gmail™ Auto Expander for Gmail™
ID ilkidmijegomodfeplfdekbfglhaahba
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/auto-expander-for-gmail/ilkidmijegomodfeplfdekbfglhaahba
คำอธิบาย Automatically expands too long mails in Gmail™.
ขนาดไฟล์ 10.39 KB
จำนวนการติดตั้ง 523
เวอร์ชันปัจจุบัน 1.5.0.5
อัปเดตครั้งล่าสุด 2023-12-03
วันที่เผยแพร่ 2019-05-25
คะแนน 2.67/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Jacob "kurtextrem" Groß
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/kurtextrem/Gmail-Auto-Expander
URL หน้าช่วยเหลือ https://github.com/kurtextrem/Gmail-Auto-Expander/issues/
URL หน้านโยบายความเป็นส่วนตัว https://www.kurtextrem.de/chrome/PRIVACY.html
ภาษาที่รองรับ 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\/*"
    ]
}