Textbox Character Count
Counts the number of non-whitespace characters in textboxes and places the count above them.
Co to jest Textbox Character Count?
Textbox Character Count to rozszerzenie Chrome opracowane przez Michael Slevin, a jego główną funkcją jest „Counts the number of non-whitespace characters in textboxes and places the count above them.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Textbox Character Count
Pobierz pliki rozszerzeń Textbox Character Count w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Chrome extension to display character counts above text boxes. ONLY works on Professor Staley's IHS course pages.
Podstawowe informacje o rozszerzeniu
Nazwa | Textbox Character Count |
ID | pfpmdncabdmdfboaikkaekpmppdolaci |
Oficjalny URL | https://chromewebstore.google.com/detail/textbox-character-count/pfpmdncabdmdfboaikkaekpmppdolaci |
Opis | Counts the number of non-whitespace characters in textboxes and places the count above them. |
Rozmiar pliku | 4.13 KB |
Liczba instalacji | 34 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2014-08-25 |
Data Publikacji | 2014-08-24 |
Deweloper | Michael Slevin |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |