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"
]
} | |