Word Counter
Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.
What is Word Counter?
Word Counter is a Chrome extension developed by mileswiesenthal, and its main feature is "Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.".
Download Word Counter Extension CRX File
Download Word Counter 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
Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.
Extension Basic Information
Name | |
ID | genbfnkneekjmppgniacjffdphjgadpd |
Official URL | https://chrome.google.com/webstore/detail/word-counter/genbfnkneekjmppgniacjffdphjgadpd |
Description | Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word. |
File Size | 359 KB |
Installation Count | 19 |
Current Version | 1.0 |
Last Updated | 2017-08-07 |
Publish Date | 2017-08-07 |
Rating | 1.00/5 Total 1 Ratings |
Developer | mileswiesenthal |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Word Counter", "short_name": "PM", "description": "Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.", "version": "1.0", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Word Counter" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "googleDocsUtil.js" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ] } ], "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |