Easy Character Counter
count string
什么是Easy Character Counter?
Easy Character Counter是由https://macha795.com开发的Chrome扩展程序,该扩展的主要功能是“count string”。
扩展截图
下载Easy Character Counter扩展crx文件
下载Easy Character Counter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Easy Character Counter |
ID | copafpdgkjbaoenpeogidcemgmgfflgb |
官方URL | https://chromewebstore.google.com/detail/easy-character-counter/copafpdgkjbaoenpeogidcemgmgfflgb |
简介 | count string |
文件大小 | 46.36 KB |
安装次数 | 25 |
当前版本 | 0.0.3 |
更新时间 | 2022-06-28 |
上架时间 | 2022-06-11 |
开发者 | https://macha795.com |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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:\/\/*\/*" ] } ] } |