Word Count

Display the number of words and characters within highlight in contextMenu and bottom right

Что такое Word Count?

Word Count - это расширение Chrome, разработанное Zeno, и его основная функция - "Display the number of words and characters within highlight in contextMenu and bottom right".

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

screenshot
screenshot
screenshot

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

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

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

                        Display the number of words and characters within highlight in context menu and bottom right

On highlight, show the word count and the number of characters immediately.

Settings to change to 
- dark count box 
- hide count box

Chrome extension word counter to easily count words & characters                    

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

Название Word Count Word Count
ID inaklojbeljbfmkkpjfmjjgehckpeohf
Официальный URL https://chromewebstore.google.com/detail/word-count/inaklojbeljbfmkkpjfmjjgehckpeohf
Описание Display the number of words and characters within highlight in contextMenu and bottom right
Размер файла 15.59 KB
Количество установок 53
Текущая Версия 0.2
Последнее Обновление 2022-06-09
Дата публикации 2022-06-09
Разработчик Zeno
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.buymeacoffee.com/WhyNotBeFrg
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Word Count",
    "version": "0.2",
    "description": "Display the number of words and characters within highlight in contextMenu and bottom right",
    "icons": {
        "16": "icons\/logo.png",
        "48": "icons\/logo.png",
        "128": "icons\/logo.png"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "action": {
        "default_title": "test",
        "default_popup": "key.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "test.js"
            ]
        }
    ]
}