Word and Page Count for Google Docs
Status bar display of word and page count in Google Docs.
Apa itu Word and Page Count for Google Docs?
Word and Page Count for Google Docs adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Status bar display of word and page count in Google Docs.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Word and Page Count for Google Docs
Unduh file ekstensi Word and Page Count for Google Docs dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Informasi Dasar Ekstensi
Nama | Word and Page Count for Google Docs |
ID | lplekocfhhdadellpmilcaobpmlkgdde |
URL Resmi | https://chromewebstore.google.com/detail/word-and-page-count-for-g/lplekocfhhdadellpmilcaobpmlkgdde |
Deskripsi | Status bar display of word and page count in Google Docs. |
Ukuran File | 373 KB |
Jumlah Instalasi | 605 |
Versi Saat Ini | 1.3 |
Terakhir Diperbarui | 2017-01-17 |
Tanggal Publikasi | 2017-01-16 |
Penilaian | 3.83/5 Total 12 Penilaian |
Pengembang | Unknown |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } |