note.com の執筆画面・記事閲覧画面に常時表示されるフローティング文字数カウンター Chrome 拡張機能です。 完全無料・完全クライアント完結(外部通信ゼロ)で動作します。
Chrome Web Store への公開前に手動でインストールする方法です。
git clone するchrome://extensions/ と入力してアクセスcc-note Word Counter-company)を選択して「フォルダーの選択」https://note.com/ の記事ページにアクセスするhttps://editor.note.com/ で新規記事を開き、文字を入力すると文字数がリアルタイムで変わることを確認する| 項目 | 内容 |
|---|---|
| Manifest | V3 |
| 言語 | Vanilla JS(フレームワーク不使用) |
| 権限 | storage, activeTab |
| host_permissions | https://note.com/*, https://editor.note.com/* |
| 外部通信 | なし(完全クライアント完結) |
| 対応ブラウザ | Google Chrome 最新版 |
cc-note Word Counter-company/
├── manifest.json
├── icons/
│ ├── icon16.png
│ ├── icon48.png
│ └── icon128.png
├── content/
│ ├── content.js # コンテンツスクリプト(DOM監視・計測)
│ ├── widget.js # ウィジェット生成・更新・設定適用
│ └── widget.css # ウィジェットスタイル
├── popup/
│ ├── popup.html # 設定ポップアップ画面
│ ├── popup.css # ポップアップスタイル
│ └── popup.js # 設定の読み書きロジック
├── docs/
│ └── SPRINT_LOG.md # 開発ログ
├── CHANGELOG.md
├── ICONS_TODO.md
├── STORE_LISTING.md
└── README.md
MIT License
Copyright (c) 2026 note Word Counter+ Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.