Wordcounter
Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.
Wordcounter là gì?
Wordcounter là một tiện ích mở rộng Chrome được phát triển bởi Sahil Lavingia, và tính năng chính của nó là "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Wordcounter
Tải xuống các tệp mở rộng Wordcounter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Wordcounter |
ID | lhggjeapfnagbjlklclkmlihhoandlib |
URL Chính Thức | https://chromewebstore.google.com/detail/wordcounter/lhggjeapfnagbjlklclkmlihhoandlib |
Mô tả | Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words. |
Kích Thước Tệp | 45.97 KB |
Số Lần Cài Đặt | 3,718 |
Phiên Bản Hiện Tại | 1.3 |
Cập Nhật Lần Cuối | 2018-08-02 |
Ngày Phát Hành | 2018-08-01 |
Đánh Giá | 2.62/5 Tổng số 37 Đánh Giá |
Nhà Phát Triển | Sahil Lavingia |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |