count(text)
Shows word and characters count and some other info on any selected text (context menu).
Cos'è count(text)?
count(text) è un'estensione di Chrome sviluppata da Konstantin Kitmanov, e la sua funzione principale è "Shows word and characters count and some other info on any selected text (context menu).".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione count(text)
Scarica i file di estensione count(text) in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | count(text) |
ID | hdecimbkbmbanpandpcljaifkdelncan |
URL Ufficiale | https://chromewebstore.google.com/detail/counttext/hdecimbkbmbanpandpcljaifkdelncan |
Descrizione | Shows word and characters count and some other info on any selected text (context menu). |
Dimensione del File | 10.71 KB |
Conteggio Installazioni | 261 |
Versione Corrente | 2.0.2 |
Ultimo Aggiornamento | 2022-10-04 |
Data di Pubblicazione | 2016-07-31 |
Valutazione | 3.50/5 Totale 6 Valutazioni |
Sviluppatore | Konstantin Kitmanov |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/hogart/count-text-chrome-extension |
Lingue Supportate | 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": [] } |