Textbox Character Count
Counts the number of non-whitespace characters in textboxes and places the count above them.
Was ist Textbox Character Count?
Textbox Character Count ist eine Chrome-Erweiterung, die von Michael Slevin entwickelt wurde, und ihr Hauptmerkmal ist "Counts the number of non-whitespace characters in textboxes and places the count above them.".
Erweiterungsscreenshots
Textbox Character Count-Erweiterungs-CRX-Datei herunterladen
Laden Sie Textbox Character Count-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Chrome extension to display character counts above text boxes. ONLY works on Professor Staley's IHS course pages.
Grundlegende Informationen zur Erweiterung
Name | Textbox Character Count |
ID | pfpmdncabdmdfboaikkaekpmppdolaci |
Offizielle URL | https://chromewebstore.google.com/detail/textbox-character-count/pfpmdncabdmdfboaikkaekpmppdolaci |
Beschreibung | Counts the number of non-whitespace characters in textboxes and places the count above them. |
Dateigröße | 4.13 KB |
Installationsanzahl | 34 |
Aktuelle Version | 1.0 |
Letztes Update | 2014-08-25 |
Veröffentlichungsdatum | 2014-08-24 |
Entwickler | Michael Slevin |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |