Q Word Count

Adds word count to the Quora answer editor.

Что такое Q Word Count?

Q Word Count - это расширение Chrome, разработанное http://christophersu.net, и его основная функция - "Adds word count to the Quora answer editor.".

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

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

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

                        A Chrome extension to add word counts to the Quora answer editor.                    

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

Название Q Word Count Q Word Count
ID oldmfkjmkcmkablbafglffllaimkcaol
Официальный URL https://chrome.google.com/webstore/detail/q-word-count/oldmfkjmkcmkablbafglffllaimkcaol
Описание Adds word count to the Quora answer editor.
Размер файла 59.09 KB
Количество установок 21
Текущая Версия 0.2
Последнее Обновление 2014-08-14
Дата публикации 2014-08-14
Разработчик http://christophersu.net
Тип оплаты free
Официальный сайт расширения http://christophersu.net
URL страницы помощи http://christophersu.net
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Q Word Count",
    "version": "0.2",
    "author": "Christopher Su",
    "homepage_url": "https:\/\/github.com\/csu\/quora-word-count",
    "description": "Adds word count to the Quora answer editor.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.quora.com\/*"
            ],
            "js": [
                "jquery-1.11.1.min.js",
                "word-count.min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2
}