Word and Page Count for Google Docs
Status bar display of word and page count in Google Docs.
Hvad er Word and Page Count for Google Docs?
Word and Page Count for Google Docs er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Status bar display of word and page count in Google Docs.".
Udvidelsesskærmbilleder
Download Word and Page Count for Google Docs-udvidelses-CRX-fil
Download Word and Page Count for Google Docs-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Grundlæggende oplysninger om udvidelsen
Navn | Word and Page Count for Google Docs |
ID | lplekocfhhdadellpmilcaobpmlkgdde |
Officiel URL | https://chromewebstore.google.com/detail/word-and-page-count-for-g/lplekocfhhdadellpmilcaobpmlkgdde |
Beskrivelse | Status bar display of word and page count in Google Docs. |
Filstørrelse | 373 KB |
Antal Installationer | 605 |
Nuværende Version | 1.3 |
Senest Opdateret | 2017-01-17 |
Udgivelsesdato | 2017-01-16 |
Bedømmelse | 3.83/5 Samlet 12 Bedømmelser |
Udvikler | Unknown |
Betalingsmetode | free |
Understøttede Sprog | 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" } |