Trimless for Google Mail™

Automatically shows trimmed content in Google Mail™.

Co to jest Trimless for Google Mail™?

Trimless for Google Mail™ to rozszerzenie Chrome opracowane przez Alec Mev, a jego główną funkcją jest „Automatically shows trimmed content in Google Mail™.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Trimless for Google Mail™

Pobierz pliki rozszerzeń Trimless for Google Mail™ w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Trimless for Google Mail™ Trimless for Google Mail™
ID niepjjjfafhadmfdminbckmciijcaagc
Oficjalny URL https://chromewebstore.google.com/detail/trimless-for-google-mail/niepjjjfafhadmfdminbckmciijcaagc
Opis Automatically shows trimmed content in Google Mail™.
Rozmiar pliku 88.72 KB
Liczba instalacji 30,000
Aktualna Wersja 1.11.1
Ostatnia Aktualizacja 2019-05-29
Data Publikacji 2019-05-29
Ocena 3.99/5 Łącznie 93 Oceny
Deweloper Alec Mev
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/jeremejevs/trimless-gmail
Adres URL Strony Pomocy https://github.com/jeremejevs/trimless-gmail/issues
Obsługiwane Języki 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]"
        }
    }
}