Gmail character counter

Write 280 characters emails in Gmail

Gmail character counter란 무엇입니까?

Gmail character counter은(는) SUMMARLY에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Write 280 characters emails in Gmail"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Gmail character counter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        We help you write short emails—a few sentences at max, by limiting the number of characters to use when writing in Gmail. 
While typing we display a set of counter–how many characters, words and total time spent to write the email.

Features

+ C: Characters
Greater than 280, it turns red–we follow the twitter limit
+ W: Words
Number of words that need less than a minute to be read, a total of 200–greater it turns red

Change log

+ Currently we support one compose at a time, we are working on releasing a fix to support multi-compose

Privacy

+ We don't store or process any data server–side, everything is processed on the client-browser.

If you have any problems or feedback, write to us at [email protected]                    

확장 프로그램 기본 정보

이름 Gmail character counter Gmail character counter
ID hkljcfbhfaloimepenpiohkfgjfkfmoa
공식 URL https://chromewebstore.google.com/detail/gmail-character-counter/hkljcfbhfaloimepenpiohkfgjfkfmoa
설명 Write 280 characters emails in Gmail
파일 크기 136 KB
설치 횟수 213
현재 버전 0.1
최근 업데이트 2020-02-09
출시 날짜 2020-02-09
평점 4.00/5 총 1 개의 평점
개발자 SUMMARLY
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://summarly.com
도움말 페이지 URL https://summarly.com/support/
개인정보 보호 정책 페이지 URL http://summarly.com/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail character counter",
    "description": "Write 280 characters emails in Gmail",
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "js": [
                "inboxsdk.js",
                "content.js",
                "js\/jquery.js",
                "js\/compromise.min.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "short.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "short.png",
        "icon16.png"
    ],
    "permissions": [
        "https:\/\/mail.google.com\/",
        "https:\/\/inbox.google.com\/"
    ],
    "manifest_version": 2
}