Word Counter Extension

Count Words and count letters of selected text in your browser. Wordcount for highlighted text on your webpage.

Что такое Word Counter Extension?

Word Counter Extension - это расширение Chrome, разработанное Alex, и его основная функция - "Count Words and count letters of selected text in your browser. Wordcount for highlighted text on your webpage.".

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

screenshot

Скачать файл CRX расширения Word Counter Extension

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

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

                        Use Word Counter to add a wordcount function in chrome. This feature enables counting words and letters on a web page. Just highlight text and click the WordCounter icon.                    

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

Название Word Counter Extension Word Counter Extension
ID lhkeofanobfbjmfbfjjmibanddfkgobc
Официальный URL https://chromewebstore.google.com/detail/word-counter-extension/lhkeofanobfbjmfbfjjmibanddfkgobc
Описание Count Words and count letters of selected text in your browser. Wordcount for highlighted text on your webpage.
Размер файла 8.66 KB
Количество установок 12,224
Текущая Версия 1.0.0
Последнее Обновление 2019-01-05
Дата публикации 2018-12-31
Рейтинг 2.86/5 Всего 7 оценок
Разработчик Alex
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Counter Extension",
    "description": "Count Words and count letters of selected text in your browser. Wordcount for highlighted text on your webpage.",
    "version": "1.0.0",
    "author": "Alexander Hauck, [email protected]",
    "short_name": "Wordcount",
    "background": {
        "scripts": [
            "wordcount.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "24": "icon24.png",
            "32": "icon32.png"
        },
        "default_title": "Word Counter"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}