Word Counter
Estimates how many words you read in selected language
What is Word Counter?
Word Counter is a Chrome extension developed by tobecomebig, and its main feature is "Estimates how many words you read in selected language".
Extension Screenshots
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
Aren't you interested in knowing how many words approximately you do read for the day?
This extension counts the number of words. The best way to use this extension is when you are learning foreign languages!!
The app counts up words in language you select. English (default), French, and Spanish are available.
****** Notice ******
・The extension does not count how many words in some web pages.
・The number of words is estimate. That measures the total number of words in web pages and add half of it assuming you read. Extension Basic Information
| Name | |
| ID | dkgjjjoaomepomilhkpoccnlcibihnac |
| Official URL | https://chrome.google.com/webstore/detail/word-counter/dkgjjjoaomepomilhkpoccnlcibihnac |
| Description | Estimates how many words you read in selected language |
| File Size | 43.16 KB |
| Installation Count | 10 |
| Current Version | 0.2 |
| Last Updated | 2014-03-10 |
| Publish Date | 2014-03-10 |
| Developer | tobecomebig |
| Payment Type | free |
| Supported Languages | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Word Counter",
"version": "0.2",
"manifest_version": 2,
"description": "Estimates how many words you read in selected language",
"permissions": [
"activeTab",
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"jquery.js",
"countUp.min.copy.js",
"content_script.js"
]
}
],
"browser_action": {
"default_icon": "icon.png",
"default_title": "Word Counter",
"default_popup": "popup.html"
}
} | |