文字数カウント

テキストボックスやテキストエリアに入力された文字数を、リアルタイムでカウントします。

What is 文字数カウント?

文字数カウント is a Chrome extension developed by https://frogapp.net, and its main feature is "テキストボックスやテキストエリアに入力された文字数を、リアルタイムでカウントします。".

Extension Screenshots

screenshot
screenshot
screenshot

Download 文字数カウント Extension CRX File

Download 文字数カウント extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        この拡張機能を使うと、Webサイト上のテキストボックスやテキストエリアに入力された文字数を数えることができます。

いちいちWebツールにコピペしたり、目と指を頼りにして手作業で数えたりする必要がなくなります。

ソースコード↓
https://github.com/r-40021/count-character

----------------------------------

v1.0.2
- 軽微な不具合を修正しました。

v1.0.1
- 動的に生成されたテキストボックス・テキストエリアに対応しました。
- カウンターがマウスカーソルをよけるようになりました。
- 不具合をいくつか修正しました。                    

Extension Basic Information

Name 文字数カウント 文字数カウント
ID bhfihcmmnnagikobmgakbjliddjmfgmd
Official URL https://chromewebstore.google.com/detail/%E6%96%87%E5%AD%97%E6%95%B0%E3%82%AB%E3%82%A6%E3%83%B3%E3%83%88/bhfihcmmnnagikobmgakbjliddjmfgmd
Description テキストボックスやテキストエリアに入力された文字数を、リアルタイムでカウントします。
File Size 14.5 KB
Installation Count 82
Current Version 1.0.2
Last Updated 2022-08-20
Publish Date 2022-01-31
Developer https://frogapp.net
Email [email protected]
Payment Type free
Extension Website https://github.com/r-40021/count-character
Help Page URL https://github.com/r-40021/count-character/issues
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "\u6587\u5b57\u6570\u30ab\u30a6\u30f3\u30c8",
    "description": "\u30c6\u30ad\u30b9\u30c8\u30dc\u30c3\u30af\u30b9\u3084\u30c6\u30ad\u30b9\u30c8\u30a8\u30ea\u30a2\u306b\u5165\u529b\u3055\u308c\u305f\u6587\u5b57\u6570\u3092\u3001\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u3067\u30ab\u30a6\u30f3\u30c8\u3057\u307e\u3059\u3002",
    "version": "1.0.2",
    "manifest_version": 2,
    "icons": {
        "16": "icon\/icon_16x16.png",
        "48": "icon\/icon_48x48.png",
        "128": "icon\/icon_128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script\/content.js"
            ]
        }
    ]
}