Easy Character Counter
count string
O que é Easy Character Counter?
Easy Character Counter é uma extensão do Chrome desenvolvida por https://macha795.com, e sua principal característica é "count string".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Easy Character Counter
Baixe arquivos de extensão Easy Character 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
Count the number of characters in the selected text. This is a Chrome Extension that allows you to count the number of characters in the selected text. The number of characters is displayed in the upper right corner of the screen. Please use it to check the number of characters in an article or for proofreading.
Informações Básicas da Extensão
Nome | Easy Character Counter |
ID | copafpdgkjbaoenpeogidcemgmgfflgb |
URL Oficial | https://chromewebstore.google.com/detail/easy-character-counter/copafpdgkjbaoenpeogidcemgmgfflgb |
Descrição | count string |
Tamanho do Arquivo | 46.36 KB |
Contagem de Instalações | 25 |
Versão Atual | 0.0.3 |
Última Atualização | 2022-06-28 |
Data de Publicação | 2022-06-11 |
Desenvolvedor | https://macha795.com |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.0.3", "manifest_version": 3, "default_locale": "en", "background": { "service_worker": "js\/background.js" }, "permissions": [ "contextMenus" ], "icons": { "64": "img\/icon_64.png", "128": "img\/icon_128.png", "512": "img\/icon_512.png" }, "content_scripts": [ { "all_frames": false, "css": [ "css\/contents.css" ], "js": [ "plugin\/jquery.min.js", "js\/contents.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_idle" } ], "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "web_accessible_resources": [ { "resources": [ "img\/close_w.svg" ], "matches": [ "https:\/\/*\/*" ] } ] } |