count(text)

Shows word and characters count and some other info on any selected text (context menu).

count(text) क्या है?

count(text) Konstantin Kitmanov द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows word and characters count and some other info on any selected text (context menu)."।

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

screenshot

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

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

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

                        Select any text and use context menu to show character, word count and other useful text statistics. Unlike other word count and text stats tools, it correctly counts not only Latin-based texts.
This extension is open-source software, feel free to contribute.                    

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

नाम count(text) count(text)
ID hdecimbkbmbanpandpcljaifkdelncan
आधिकारिक URL https://chromewebstore.google.com/detail/counttext/hdecimbkbmbanpandpcljaifkdelncan
विवरण Shows word and characters count and some other info on any selected text (context menu).
फ़ाइल का आकार 10.71 KB
स्थापना संख्या 261
वर्तमान संस्करण 2.0.2
अंतिम अपडेट 2022-10-04
प्रकाशन तिथि 2016-07-31
रेटिंग 3.50/5 कुल 6 रेटिंग्स
डेवलपर Konstantin Kitmanov
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/hogart/count-text-chrome-extension
समर्थित भाषाएँ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "count(text)",
    "description": "Shows word and characters count and some other info on any selected text (context menu).",
    "version": "2.0.2",
    "permissions": [
        "contextMenus",
        "notifications"
    ],
    "background": {
        "service_worker": "bg.js",
        "type": "module"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "offline_enabled": true,
    "default_locale": "en",
    "content_scripts": []
}