Word Count
Display the number of words and characters within highlight in contextMenu and bottom right
Word Count là gì?
Word Count là một tiện ích mở rộng Chrome được phát triển bởi Zeno, và tính năng chính của nó là "Display the number of words and characters within highlight in contextMenu and bottom right".
Ả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 Word Count
Tải xuống các tệp mở rộng Word Count 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
Display the number of words and characters within highlight in context menu and bottom right On highlight, show the word count and the number of characters immediately. Settings to change to - dark count box - hide count box Chrome extension word counter to easily count words & characters
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Word Count |
ID | inaklojbeljbfmkkpjfmjjgehckpeohf |
URL Chính Thức | https://chromewebstore.google.com/detail/word-count/inaklojbeljbfmkkpjfmjjgehckpeohf |
Mô tả | Display the number of words and characters within highlight in contextMenu and bottom right |
Kích Thước Tệp | 15.59 KB |
Số Lần Cài Đặt | 53 |
Phiên Bản Hiện Tại | 0.2 |
Cập Nhật Lần Cuối | 2022-06-09 |
Ngày Phát Hành | 2022-06-09 |
Nhà Phát Triển | Zeno |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.buymeacoffee.com/WhyNotBeFrg |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Word Count", "version": "0.2", "description": "Display the number of words and characters within highlight in contextMenu and bottom right", "icons": { "16": "icons\/logo.png", "48": "icons\/logo.png", "128": "icons\/logo.png" }, "permissions": [ "tabs", "contextMenus", "scripting", "storage" ], "background": { "service_worker": "background.js" }, "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "action": { "default_title": "test", "default_popup": "key.html" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "test.js" ] } ] } |