count(text)
Shows word and characters count and some other info on any selected text (context menu).
count(text) là gì?
count(text) là một tiện ích mở rộng Chrome được phát triển bởi Konstantin Kitmanov, và tính năng chính của nó là "Shows word and characters count and some other info on any selected text (context menu).".
Ả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 count(text)
Tải xuống các tệp mở rộng count(text) 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
Select any text and use context menu to show character, word count and other useful text statistics. Unlike other word count and text stats tools, it correctly counts not only Latin-based texts. This extension is open-source software, feel free to contribute.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | count(text) |
ID | hdecimbkbmbanpandpcljaifkdelncan |
URL Chính Thức | https://chromewebstore.google.com/detail/counttext/hdecimbkbmbanpandpcljaifkdelncan |
Mô tả | Shows word and characters count and some other info on any selected text (context menu). |
Kích Thước Tệp | 10.71 KB |
Số Lần Cài Đặt | 261 |
Phiên Bản Hiện Tại | 2.0.2 |
Cập Nhật Lần Cuối | 2022-10-04 |
Ngày Phát Hành | 2016-07-31 |
Đánh Giá | 3.50/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | Konstantin Kitmanov |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/hogart/count-text-chrome-extension |
Ngôn Ngữ Được Hỗ Trợ | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "count(text)", "description": "Shows word and characters count and some other info on any selected text (context menu).", "version": "2.0.2", "permissions": [ "contextMenus", "notifications" ], "background": { "service_worker": "bg.js", "type": "module" }, "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "offline_enabled": true, "default_locale": "en", "content_scripts": [] } |