Wordcounter
Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.
What is Wordcounter?
Wordcounter is a Chrome extension developed by Sahil Lavingia, and its main feature is "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.".
Extension Screenshots
Download Wordcounter Extension CRX File
Download Wordcounter 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
Wordcounter shows a real-time word count as you type in any Google Docs document. You can toggle it off and on by clicking on the icon in the top right corner of your browser. It also adds milestone markers every 500 words. Motivating!
Extension Basic Information
Name | Wordcounter |
ID | lhggjeapfnagbjlklclkmlihhoandlib |
Official URL | https://chromewebstore.google.com/detail/wordcounter/lhggjeapfnagbjlklclkmlihhoandlib |
Description | Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words. |
File Size | 45.97 KB |
Installation Count | 3,718 |
Current Version | 1.3 |
Last Updated | 2018-08-02 |
Publish Date | 2018-08-01 |
Rating | 2.62/5 Total 37 Ratings |
Developer | Sahil Lavingia |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Wordcounter", "version": "1.3", "description": "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.", "permissions": [ "activeTab", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/*" ], "css": [ "style.css" ], "js": [ "jquery-3.3.1.min.js", "content.js" ] } ], "browser_action": { "name": "Click to toggle Wordcounter on or off" }, "icons": { "128": "icon.png" }, "manifest_version": 2 } |