Word Count
Display the number of words and characters within highlight in contextMenu and bottom right
¿Qué es Word Count?
Word Count es una extensión de Chrome desarrollada por Zeno, y su función principal es "Display the number of words and characters within highlight in contextMenu and bottom right".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Word Count
Descarga archivos de extensión Word Count 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
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
Información Básica de la Extensión
Nombre | Word Count |
ID | inaklojbeljbfmkkpjfmjjgehckpeohf |
URL Oficial | https://chromewebstore.google.com/detail/word-count/inaklojbeljbfmkkpjfmjjgehckpeohf |
Descripción | Display the number of words and characters within highlight in contextMenu and bottom right |
Tamaño del Archivo | 15.59 KB |
Cantidad de Instalaciones | 53 |
Versión Actual | 0.2 |
Última Actualización | 2022-06-09 |
Fecha de Publicación | 2022-06-09 |
Desarrollador | Zeno |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.buymeacoffee.com/WhyNotBeFrg |
Idiomas Soportados | 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" ] } ] } |