Trimless for Google Mail™

Automatically shows trimmed content in Google Mail™.

Trimless for Google Mail™란 무엇입니까?

Trimless for Google Mail™은(는) Alec Mev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically shows trimmed content in Google Mail™."입니다.

확장 프로그램 스크린샷

screenshot

Trimless for Google Mail™ 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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]"
        }
    }
}