Word and Page Count for Google Docs
Status bar display of word and page count in Google Docs.
What is Word and Page Count for Google Docs?
Word and Page Count for Google Docs is a Chrome extension developed by Unknown, and its main feature is "Status bar display of word and page count in Google Docs.".
Extension Screenshots
Download Word and Page Count for Google Docs Extension CRX File
Download Word and Page Count for Google Docs 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
Extension Basic Information
Name | Word and Page Count for Google Docs |
ID | lplekocfhhdadellpmilcaobpmlkgdde |
Official URL | https://chromewebstore.google.com/detail/word-and-page-count-for-g/lplekocfhhdadellpmilcaobpmlkgdde |
Description | Status bar display of word and page count in Google Docs. |
File Size | 373 KB |
Installation Count | 605 |
Current Version | 1.3 |
Last Updated | 2017-01-17 |
Publish Date | 2017-01-16 |
Rating | 3.83/5 Total 12 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Word and Page Count for Google Docs", "version": "1.3", "manifest_version": 2, "web_accessible_resources": [ "statusbar.html" ], "description": "Status bar display of word and page count in Google Docs.", "background": { "page": "background.html" }, "page_action": { "default_icon": "icon.png", "default_title": "Ready to count words and pages in Google doc" }, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/document\/*" ], "js": [ "main.js" ], "run_at": "document_idle" } ], "icons": { "48": "48.png", "128": "128.png" }, "options_page": "fancy-settings\/source\/index.html" } |