count(text)
Shows word and characters count and some other info on any selected text (context menu).
什么是count(text)?
count(text)是由Konstantin Kitmanov开发的Chrome扩展程序,该扩展的主要功能是“Shows word and characters count and some other info on any selected text (context menu).”。
扩展截图
下载count(text)扩展crx文件
下载count(text)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | count(text) |
ID | hdecimbkbmbanpandpcljaifkdelncan |
官方URL | https://chromewebstore.google.com/detail/counttext/hdecimbkbmbanpandpcljaifkdelncan |
简介 | Shows word and characters count and some other info on any selected text (context menu). |
文件大小 | 10.71 KB |
安装次数 | 261 |
当前版本 | 2.0.2 |
更新时间 | 2022-10-04 |
上架时间 | 2016-07-31 |
评分 | 3.50/5 共6次评分 |
开发者 | Konstantin Kitmanov |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/hogart/count-text-chrome-extension |
支持的语言 | 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": [] } |