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文件

下載Gmail character counter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}