Word Count
Display the number of words and characters within highlight in contextMenu and bottom right
什么是Word Count?
Word Count是由Zeno开发的Chrome扩展程序,该扩展的主要功能是“Display the number of words and characters within highlight in contextMenu and bottom right”。
扩展截图
下载Word Count扩展crx文件
下载Word Count扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Word Count |
ID | inaklojbeljbfmkkpjfmjjgehckpeohf |
官方URL | https://chromewebstore.google.com/detail/word-count/inaklojbeljbfmkkpjfmjjgehckpeohf |
简介 | Display the number of words and characters within highlight in contextMenu and bottom right |
文件大小 | 15.59 KB |
安装次数 | 53 |
当前版本 | 0.2 |
更新时间 | 2022-06-09 |
上架时间 | 2022-06-09 |
开发者 | Zeno |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.buymeacoffee.com/WhyNotBeFrg |
支持的语言 | 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" ] } ] } |