Word Counter
Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.
Что такое Word Counter?
Word Counter - это расширение Chrome, разработанное mileswiesenthal, и его основная функция - "Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.".
Скачать файл CRX расширения Word Counter
Скачайте файлы расширений Word Counter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.
Основная информация о расширении
Название | |
ID | genbfnkneekjmppgniacjffdphjgadpd |
Официальный URL | https://chrome.google.com/webstore/detail/word-counter/genbfnkneekjmppgniacjffdphjgadpd |
Описание | Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word. |
Размер файла | 359 KB |
Количество установок | 19 |
Текущая Версия | 1.0 |
Последнее Обновление | 2017-08-07 |
Дата публикации | 2017-08-07 |
Рейтинг | 1.00/5 Всего 1 оценок |
Разработчик | mileswiesenthal |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Word Counter", "short_name": "PM", "description": "Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.", "version": "1.0", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Word Counter" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "googleDocsUtil.js" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ] } ], "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |