Textbox Character Count
Counts the number of non-whitespace characters in textboxes and places the count above them.
什么是Textbox Character Count?
Textbox Character Count是由Michael Slevin开发的Chrome扩展程序,该扩展的主要功能是“Counts the number of non-whitespace characters in textboxes and places the count above them.”。
扩展截图
下载Textbox Character Count扩展crx文件
下载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. 扩展基本信息
| 名称 | |
| 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"
]
} | |