Gmail character counter

Write 280 characters emails in Gmail

Gmail character counterคืออะไร?

Gmail character counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย SUMMARLY และคุณลักษณะหลักของมันคือ "Write 280 characters emails in Gmail"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gmail character counter

ดาวน์โหลดไฟล์ส่วนขยาย 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
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
}