count(text)
Shows word and characters count and some other info on any selected text (context menu).
¿Qué es count(text)?
count(text) es una extensión de Chrome desarrollada por Konstantin Kitmanov, y su función principal es "Shows word and characters count and some other info on any selected text (context menu).".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión count(text)
Descarga archivos de extensión count(text) en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | count(text) |
ID | hdecimbkbmbanpandpcljaifkdelncan |
URL Oficial | https://chromewebstore.google.com/detail/counttext/hdecimbkbmbanpandpcljaifkdelncan |
Descripción | Shows word and characters count and some other info on any selected text (context menu). |
Tamaño del Archivo | 10.71 KB |
Cantidad de Instalaciones | 261 |
Versión Actual | 2.0.2 |
Última Actualización | 2022-10-04 |
Fecha de Publicación | 2016-07-31 |
Calificación | 3.50/5 Total de 6 Calificaciones |
Desarrollador | Konstantin Kitmanov |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/hogart/count-text-chrome-extension |
Idiomas Soportados | 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": [] } |