Word Count

Counts the words in the document selection and text entry.

Word Count क्या है?

Word Count shawn.hoover द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Counts the words in the document selection and text entry."।

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

screenshot
screenshot

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

crx प्रारूप में Word Count एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Counts the words in the document selection and text entry. The count is displayed in an icon in the location bar. Use this to track word counts as you type or if you're curious how many words are in part of a web page.                    

एक्सटेंशन की मूल जानकारी

नाम Word Count Word Count
ID cipmjkgfjmkcmjfoidhpjfoihkgggmfk
आधिकारिक URL https://chrome.google.com/webstore/detail/word-count/cipmjkgfjmkcmjfoidhpjfoihkgggmfk
विवरण Counts the words in the document selection and text entry.
फ़ाइल का आकार 9.76 KB
स्थापना संख्या 195
वर्तमान संस्करण 0.4
अंतिम अपडेट 2015-07-30
प्रकाशन तिथि 2015-07-30
रेटिंग 3.14/5 कुल 7 रेटिंग्स
डेवलपर shawn.hoover
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://bitbucket.org/shoover/word-count-ext
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count",
    "version": "0.4",
    "author": "Shawn Hoover",
    "manifest_version": 2,
    "description": "Counts the words in the document selection and text entry.",
    "icons": {
        "64": "logo64.png",
        "128": "logo128.png"
    },
    "permissions": [
        "tabs"
    ],
    "page_action": {
        "default_title": "Word Count"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}