Quick Character Count
Count characters in selected text
What is Quick Character Count?
Quick Character Count is a Chrome extension developed by prestonfrom, and its main feature is "Count characters in selected text".
Extension Screenshots
Download Quick Character Count Extension CRX File
Download Quick Character Count 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
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.
Extension Basic Information
Name | Quick Character Count |
ID | cobjdgciclhjhpheafbpooknokhnkoof |
Official URL | https://chromewebstore.google.com/detail/quick-character-count/cobjdgciclhjhpheafbpooknokhnkoof |
Description | Count characters in selected text |
File Size | 8.13 KB |
Installation Count | 41 |
Current Version | 1.5.1 |
Last Updated | 2016-02-25 |
Publish Date | 2016-02-25 |
Rating | 2.00/5 Total 2 Ratings |
Developer | prestonfrom |
Payment Type | free |
Extension Website | https://github.com/prestonfrom/ |
Help Page URL | https://github.com/prestonfrom/ |
Supported Languages | 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" ] } } |