Count selected characters and words

A simple tool to count selected characters and words.

Что такое Count selected characters and words?

Count selected characters and words - это расширение Chrome, разработанное http://riangraphics.com, и его основная функция - "A simple tool to count selected characters and words.".

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

screenshot

Скачать файл CRX расширения Count selected characters and words

Скачайте файлы расширений Count selected characters and words в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Count selected characters and words on the fly, just select the text and get the result, to enable it just save the settings                    

Основная информация о расширении

Название Count selected characters and words Count selected characters and words
ID pdbaijkfobjcdkppnnmjddjgfhjdpoge
Официальный URL https://chrome.google.com/webstore/detail/count-selected-characters/pdbaijkfobjcdkppnnmjddjgfhjdpoge
Описание A simple tool to count selected characters and words.
Размер файла 7.42 KB
Количество установок 75
Текущая Версия 1.0.4
Последнее Обновление 2018-10-09
Дата публикации 2018-10-09
Рейтинг 4.50/5 Всего 4 оценок
Разработчик http://riangraphics.com
Тип оплаты free
Официальный сайт расширения https://riangraphics.com/highlithed-word-counter/
URL страницы помощи https://riangraphics.com/highlithed-word-counter/#faq
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Count selected characters and words",
    "description": "A simple tool to count selected characters and words.",
    "version": "1.0.4",
    "author": "RianGraphics",
    "browser_action": {
        "default_icon": "tab-icon.png",
        "default_popup": "index.html",
        "default_title": "Count selected characters and words"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "rc-styles.css"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}