Word Counter
Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.
O que é Word Counter?
Word Counter é uma extensão do Chrome desenvolvida por mileswiesenthal, e sua principal característica é "Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.".
Baixar o arquivo CRX da Extensão Word Counter
Baixe arquivos de extensão Word Counter 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 text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.
Informações Básicas da Extensão
Nome | |
ID | genbfnkneekjmppgniacjffdphjgadpd |
URL Oficial | https://chrome.google.com/webstore/detail/word-counter/genbfnkneekjmppgniacjffdphjgadpd |
Descrição | Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word. |
Tamanho do Arquivo | 359 KB |
Contagem de Instalações | 19 |
Versão Atual | 1.0 |
Última Atualização | 2017-08-07 |
Data de Publicação | 2017-08-07 |
Classificação | 1.00/5 Total de 1 Avaliações |
Desenvolvedor | mileswiesenthal |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Word Counter", "short_name": "PM", "description": "Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.", "version": "1.0", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Word Counter" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "googleDocsUtil.js" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ] } ], "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |