Textbox Character Count
Counts the number of non-whitespace characters in textboxes and places the count above them.
Co je Textbox Character Count?
Textbox Character Count je rozšíření Chrome vyvinuté Michael Slevin, a jeho hlavní funkcí je „Counts the number of non-whitespace characters in textboxes and places the count above them.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Textbox Character Count
Stáhněte si soubory rozšíření Textbox Character Count ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Chrome extension to display character counts above text boxes. ONLY works on Professor Staley's IHS course pages.
Základní Informace o Rozšíření
Název | Textbox Character Count |
ID | pfpmdncabdmdfboaikkaekpmppdolaci |
Oficiální URL | https://chromewebstore.google.com/detail/textbox-character-count/pfpmdncabdmdfboaikkaekpmppdolaci |
Popis | Counts the number of non-whitespace characters in textboxes and places the count above them. |
Velikost souboru | 4.13 KB |
Počet instalací | 34 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2014-08-25 |
Datum Vydání | 2014-08-24 |
Vývojář | Michael Slevin |
Typ Platby | free |
Podporované Jazyky | 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" ] } |