Word Count
Display the number of words and characters within highlight in contextMenu and bottom right
What is Word Count?
Word Count is a Chrome extension developed by Zeno, and its main feature is "Display the number of words and characters within highlight in contextMenu and bottom right".
Extension Screenshots
Download Word Count Extension CRX File
Download Word 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
Display the number of words and characters within highlight in context menu and bottom right On highlight, show the word count and the number of characters immediately. Settings to change to - dark count box - hide count box Chrome extension word counter to easily count words & characters
Extension Basic Information
Name | Word Count |
ID | inaklojbeljbfmkkpjfmjjgehckpeohf |
Official URL | https://chromewebstore.google.com/detail/word-count/inaklojbeljbfmkkpjfmjjgehckpeohf |
Description | Display the number of words and characters within highlight in contextMenu and bottom right |
File Size | 15.59 KB |
Installation Count | 53 |
Current Version | 0.2 |
Last Updated | 2022-06-09 |
Publish Date | 2022-06-09 |
Developer | Zeno |
[email protected] | |
Payment Type | free |
Extension Website | https://www.buymeacoffee.com/WhyNotBeFrg |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Word Count", "version": "0.2", "description": "Display the number of words and characters within highlight in contextMenu and bottom right", "icons": { "16": "icons\/logo.png", "48": "icons\/logo.png", "128": "icons\/logo.png" }, "permissions": [ "tabs", "contextMenus", "scripting", "storage" ], "background": { "service_worker": "background.js" }, "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "action": { "default_title": "test", "default_popup": "key.html" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "test.js" ] } ] } |