count(text)
Shows word and characters count and some other info on any selected text (context menu).
Wat is count(text)?
count(text) is een Chrome-extensie ontwikkeld door Konstantin Kitmanov, en de belangrijkste functie is "Shows word and characters count and some other info on any selected text (context menu).".
Extensie Screenshots
Download het CRX-bestand van de extensie count(text)
Download count(text)-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | count(text) |
ID | hdecimbkbmbanpandpcljaifkdelncan |
Officiële URL | https://chromewebstore.google.com/detail/counttext/hdecimbkbmbanpandpcljaifkdelncan |
Beschrijving | Shows word and characters count and some other info on any selected text (context menu). |
Bestandsgrootte | 10.71 KB |
Aantal Installaties | 261 |
Huidige Versie | 2.0.2 |
Laatst Bijgewerkt | 2022-10-04 |
Publicatiedatum | 2016-07-31 |
Beoordeling | 3.50/5 Totaal 6 Beoordelingen |
Ontwikkelaar | Konstantin Kitmanov |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/hogart/count-text-chrome-extension |
Ondersteunde Talen | 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": [] } |