Wordcounter

Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.

Что такое Wordcounter?

Wordcounter - это расширение Chrome, разработанное Sahil Lavingia, и его основная функция - "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.".

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

screenshot

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

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

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

                        Wordcounter shows a real-time word count as you type in any Google Docs document. You can toggle it off and on by clicking on the icon in the top right corner of your browser.

It also adds milestone markers every 500 words. Motivating!                    

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

Название Wordcounter Wordcounter
ID lhggjeapfnagbjlklclkmlihhoandlib
Официальный URL https://chromewebstore.google.com/detail/wordcounter/lhggjeapfnagbjlklclkmlihhoandlib
Описание Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.
Размер файла 45.97 KB
Количество установок 3,718
Текущая Версия 1.3
Последнее Обновление 2018-08-02
Дата публикации 2018-08-01
Рейтинг 2.62/5 Всего 37 оценок
Разработчик Sahil Lavingia
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wordcounter",
    "version": "1.3",
    "description": "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "name": "Click to toggle Wordcounter on or off"
    },
    "icons": {
        "128": "icon.png"
    },
    "manifest_version": 2
}