Gmail character counter

Write 280 characters emails in Gmail

Gmail character counter क्या है?

Gmail character counter SUMMARLY द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Write 280 characters emails in Gmail"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Gmail character counter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}