Tally Word Counter

Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.

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

Tally Word Counter - это расширение Chrome, разработанное https://tallywordcounter.online, и его основная функция - "Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Your favorite character counter! Tally is a Chrome extension to easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count to see the number of characters, words, sentences, paragraphs, spaces, letters, digits, and special characters in your text.

Visit tallywordcounter.online for the full site.                    

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

Название Tally Word Counter Tally Word Counter
ID eggkmbghbmjmbdjloifaklghfiecjbnk
Официальный URL https://chromewebstore.google.com/detail/tally-word-counter/eggkmbghbmjmbdjloifaklghfiecjbnk
Описание Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.
Размер файла 13.05 KB
Количество установок 331
Текущая Версия 1.1
Последнее Обновление 2019-06-06
Дата публикации 2019-05-31
Рейтинг 2.67/5 Всего 6 оценок
Разработчик https://tallywordcounter.online
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tally Word Counter",
    "short_name": "Tally",
    "description": "Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.",
    "version": "1.1",
    "icons": {
        "128": "128.png",
        "48": "48.png",
        "32": "32.png",
        "16": "16.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "manifest_version": 2
}