Textbox Character Count
Counts the number of non-whitespace characters in textboxes and places the count above them.
Vad är Textbox Character Count?
Textbox Character Count är en Chrome-tillägg utvecklad av Michael Slevin, och dess huvudfunktion är "Counts the number of non-whitespace characters in textboxes and places the count above them.".
Tilläggsskärmbilder
Ladda ner Textbox Character Count-förlängningens CRX-fil
Ladda ner Textbox Character Count-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Chrome extension to display character counts above text boxes. ONLY works on Professor Staley's IHS course pages. Grundläggande Information om Tillägg
| Namn | |
| ID | pfpmdncabdmdfboaikkaekpmppdolaci |
| Officiell webbadress | https://chromewebstore.google.com/detail/textbox-character-count/pfpmdncabdmdfboaikkaekpmppdolaci |
| Beskrivning | Counts the number of non-whitespace characters in textboxes and places the count above them. |
| Filstorlek | 4.13 KB |
| Antal Installationer | 34 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2014-08-25 |
| Publiceringsdatum | 2014-08-24 |
| Utvecklare | Michael Slevin |
| Betalningssätt | free |
| Stödda Språk | 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"
]
} | |