count(text)
Shows word and characters count and some other info on any selected text (context menu).
Apa itu count(text)?
count(text) adalah ekstensi Chrome yang dikembangkan oleh Konstantin Kitmanov, dan fitur utamanya adalah "Shows word and characters count and some other info on any selected text (context menu).".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi count(text)
Unduh file ekstensi count(text) dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | count(text) |
ID | hdecimbkbmbanpandpcljaifkdelncan |
URL Resmi | https://chromewebstore.google.com/detail/counttext/hdecimbkbmbanpandpcljaifkdelncan |
Deskripsi | Shows word and characters count and some other info on any selected text (context menu). |
Ukuran File | 10.71 KB |
Jumlah Instalasi | 261 |
Versi Saat Ini | 2.0.2 |
Terakhir Diperbarui | 2022-10-04 |
Tanggal Publikasi | 2016-07-31 |
Penilaian | 3.50/5 Total 6 Penilaian |
Pengembang | Konstantin Kitmanov |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/hogart/count-text-chrome-extension |
Bahasa yang Didukung | 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": [] } |