Wordcounter
Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.
Apa itu Wordcounter?
Wordcounter adalah ekstensi Chrome yang dikembangkan oleh Sahil Lavingia, dan fitur utamanya adalah "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Wordcounter
Unduh file ekstensi Wordcounter 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
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!
Informasi Dasar Ekstensi
Nama | Wordcounter |
ID | lhggjeapfnagbjlklclkmlihhoandlib |
URL Resmi | https://chromewebstore.google.com/detail/wordcounter/lhggjeapfnagbjlklclkmlihhoandlib |
Deskripsi | Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words. |
Ukuran File | 45.97 KB |
Jumlah Instalasi | 3,718 |
Versi Saat Ini | 1.3 |
Terakhir Diperbarui | 2018-08-02 |
Tanggal Publikasi | 2018-08-01 |
Penilaian | 2.62/5 Total 37 Penilaian |
Pengembang | Sahil Lavingia |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } |