Easy Character Counter
count string
Easy Character Counter là gì?
Easy Character Counter là một tiện ích mở rộng Chrome được phát triển bởi https://macha795.com, và tính năng chính của nó là "count string".
Ả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 Easy Character Counter
Tải xuống các tệp mở rộng Easy Character Counter 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
Count the number of characters in the selected text. This is a Chrome Extension that allows you to count the number of characters in the selected text. The number of characters is displayed in the upper right corner of the screen. Please use it to check the number of characters in an article or for proofreading.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Easy Character Counter |
ID | copafpdgkjbaoenpeogidcemgmgfflgb |
URL Chính Thức | https://chromewebstore.google.com/detail/easy-character-counter/copafpdgkjbaoenpeogidcemgmgfflgb |
Mô tả | count string |
Kích Thước Tệp | 46.36 KB |
Số Lần Cài Đặt | 25 |
Phiên Bản Hiện Tại | 0.0.3 |
Cập Nhật Lần Cuối | 2022-06-28 |
Ngày Phát Hành | 2022-06-11 |
Nhà Phát Triển | https://macha795.com |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.0.3", "manifest_version": 3, "default_locale": "en", "background": { "service_worker": "js\/background.js" }, "permissions": [ "contextMenus" ], "icons": { "64": "img\/icon_64.png", "128": "img\/icon_128.png", "512": "img\/icon_512.png" }, "content_scripts": [ { "all_frames": false, "css": [ "css\/contents.css" ], "js": [ "plugin\/jquery.min.js", "js\/contents.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_idle" } ], "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "web_accessible_resources": [ { "resources": [ "img\/close_w.svg" ], "matches": [ "https:\/\/*\/*" ] } ] } |