Word Count on Webpage By Warp Vessel

A simple chrome extension that allows you to instantly see the word count on the current webpage.

Что такое Word Count on Webpage By Warp Vessel?

Word Count on Webpage By Warp Vessel - это расширение Chrome, разработанное Warp Vessel Apps, и его основная функция - "A simple chrome extension that allows you to instantly see the word count on the current webpage.".

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

screenshot
screenshot

Скачать файл CRX расширения Word Count on Webpage By Warp Vessel

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

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

                        A simple chrome extension that allows you to instantly see the word count on the current webpage.                    

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

Название Word Count on Webpage By Warp Vessel Word Count on Webpage By Warp Vessel
ID poojadbpgpkiokkenipihadhecgphkfh
Официальный URL https://chromewebstore.google.com/detail/word-count-on-webpage-by/poojadbpgpkiokkenipihadhecgphkfh
Описание A simple chrome extension that allows you to instantly see the word count on the current webpage.
Размер файла 6.48 KB
Количество установок 321
Текущая Версия 1.02
Последнее Обновление 2019-05-30
Дата публикации 2019-05-24
Рейтинг 3.75/5 Всего 4 оценок
Разработчик Warp Vessel Apps
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count on Webpage By Warp Vessel",
    "version": "1.02",
    "manifest_version": 2,
    "permissions": [
        "tabs"
    ],
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Word Count By Warp Vessel",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}