Quick Character Count
Count characters in selected text
Quick Character Countとは何ですか?
Quick Character Countはprestonfromによって開発されたChromeの拡張機能で、その主な機能は「Count characters in selected text」です。
拡張機能のスクリーンショット
Quick Character Count拡張機能のCRXファイルをダウンロード
Quick Character Count拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is an ultra simple extension to find the character count of selected text. Good for bloggers/editors who are trying to keep titles, etc. under a certain length. Just highlight text and select "Character count" from the context (left-click) menu.
拡張機能の基本情報
名前 | Quick Character Count |
ID | cobjdgciclhjhpheafbpooknokhnkoof |
公式URL | https://chromewebstore.google.com/detail/quick-character-count/cobjdgciclhjhpheafbpooknokhnkoof |
説明 | Count characters in selected text |
ファイルサイズ | 8.13 KB |
インストール数 | 41 |
現在のバージョン | 1.5.1 |
最終更新日 | 2016-02-25 |
公開日 | 2016-02-25 |
評価 | 2.00/5 合計 2 レビュー |
開発者 | prestonfrom |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/prestonfrom/ |
ヘルプページのURL | https://github.com/prestonfrom/ |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Quick Character Count", "description": "Count characters in selected text", "version": "1.5.1", "browser_action": { "default_icon": "icon.png" }, "icons": { "16": "icon-bitty.png", "48": "icon.png", "128": "iconbig.png" }, "permissions": [ "contextMenus", "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "script.js" ] } ], "background": { "scripts": [ "background.js" ] } } |