Trimless for Google Mail™

Automatically shows trimmed content in Google Mail™.

Что такое Trimless for Google Mail™?

Trimless for Google Mail™ - это расширение Chrome, разработанное Alec Mev, и его основная функция - "Automatically shows trimmed content in Google Mail™.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Trimless for Google Mail™

Скачайте файлы расширений Trimless for Google Mail™ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Trimless for Google Mail™ Trimless for Google Mail™
ID niepjjjfafhadmfdminbckmciijcaagc
Официальный URL https://chromewebstore.google.com/detail/trimless-for-google-mail/niepjjjfafhadmfdminbckmciijcaagc
Описание Automatically shows trimmed content in Google Mail™.
Размер файла 88.72 KB
Количество установок 30,000
Текущая Версия 1.11.1
Последнее Обновление 2019-05-29
Дата публикации 2019-05-29
Рейтинг 3.99/5 Всего 93 оценок
Разработчик Alec Mev
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/jeremejevs/trimless-gmail
URL страницы помощи https://github.com/jeremejevs/trimless-gmail/issues
Поддерживаемые языки 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]"
        }
    }
}