count(text)

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

Что такое count(text)?

count(text) - это расширение Chrome, разработанное Konstantin Kitmanov, и его основная функция - "Shows word and characters count and some other info on any selected text (context menu).".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения count(text)

Скачайте файлы расширений count(text) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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": []
}