Word and Page Count for Google Docs
Status bar display of word and page count in Google Docs.
Wat is Word and Page Count for Google Docs?
Word and Page Count for Google Docs is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Status bar display of word and page count in Google Docs.".
Extensie Screenshots
Download het CRX-bestand van de extensie Word and Page Count for Google Docs
Download Word and Page Count for Google Docs-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Basisinformatie over de Extensie
Naam | Word and Page Count for Google Docs |
ID | lplekocfhhdadellpmilcaobpmlkgdde |
Officiële URL | https://chromewebstore.google.com/detail/word-and-page-count-for-g/lplekocfhhdadellpmilcaobpmlkgdde |
Beschrijving | Status bar display of word and page count in Google Docs. |
Bestandsgrootte | 373 KB |
Aantal Installaties | 605 |
Huidige Versie | 1.3 |
Laatst Bijgewerkt | 2017-01-17 |
Publicatiedatum | 2017-01-16 |
Beoordeling | 3.83/5 Totaal 12 Beoordelingen |
Ontwikkelaar | Unknown |
Betalingswijze | free |
Ondersteunde Talen | 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" } |