count(text)
Shows word and characters count and some other info on any selected text (context menu).
O que é count(text)?
count(text) é uma extensão do Chrome desenvolvida por Konstantin Kitmanov, e sua principal característica é "Shows word and characters count and some other info on any selected text (context menu).".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão count(text)
Baixe arquivos de extensão count(text) no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | count(text) |
ID | hdecimbkbmbanpandpcljaifkdelncan |
URL Oficial | https://chromewebstore.google.com/detail/counttext/hdecimbkbmbanpandpcljaifkdelncan |
Descrição | Shows word and characters count and some other info on any selected text (context menu). |
Tamanho do Arquivo | 10.71 KB |
Contagem de Instalações | 261 |
Versão Atual | 2.0.2 |
Última Atualização | 2022-10-04 |
Data de Publicação | 2016-07-31 |
Classificação | 3.50/5 Total de 6 Avaliações |
Desenvolvedor | Konstantin Kitmanov |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/hogart/count-text-chrome-extension |
Idiomas Suportados | 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": [] } |