Auto Expander for Gmail™

Automatically expands too long mails in Gmail™.

什么是Auto Expander for Gmail™?

Auto Expander for Gmail™是由Jacob "kurtextrem" Groß开发的Chrome扩展程序,该扩展的主要功能是“Automatically expands too long mails in Gmail™.”。

扩展截图

screenshot
screenshot
screenshot

下载Auto Expander for Gmail™扩展crx文件

下载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\/*"
    ]
}