Textbox Character Count
Counts the number of non-whitespace characters in textboxes and places the count above them.
Что такое Textbox Character Count?
Textbox Character Count - это расширение Chrome, разработанное Michael Slevin, и его основная функция - "Counts the number of non-whitespace characters in textboxes and places the count above them.".
Снимки экрана расширения
Скачать файл CRX расширения Textbox Character Count
Скачайте файлы расширений Textbox Character Count в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Chrome extension to display character counts above text boxes. ONLY works on Professor Staley's IHS course pages.
Основная информация о расширении
Название | Textbox Character Count |
ID | pfpmdncabdmdfboaikkaekpmppdolaci |
Официальный URL | https://chromewebstore.google.com/detail/textbox-character-count/pfpmdncabdmdfboaikkaekpmppdolaci |
Описание | Counts the number of non-whitespace characters in textboxes and places the count above them. |
Размер файла | 4.13 KB |
Количество установок | 34 |
Текущая Версия | 1.0 |
Последнее Обновление | 2014-08-25 |
Дата публикации | 2014-08-24 |
Разработчик | Michael Slevin |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Textbox Character Count", "version": "1.0", "manifest_version": 2, "homepage_url": "https:\/\/github.com\/mslevin", "description": "Counts the number of non-whitespace characters in textboxes and places the count above them.", "content_scripts": [ { "js": [ "inject.js" ], "matches": [ "http:\/\/cstaley.csc.calpoly.edu:8080\/*", "https:\/\/cstaley.csc.calpoly.edu:8080\/*" ] } ], "web_accessible_resources": [ "script.js" ] } |