count(text)

Shows word and characters count and some other info on any selected text (context menu).

Qu'est-ce que count(text) ?

count(text) est une extension Chrome développée par Konstantin Kitmanov, et sa fonction principale est "Shows word and characters count and some other info on any selected text (context menu).".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension count(text)

Téléchargez les fichiers d'extension count(text) au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom count(text) count(text)
ID hdecimbkbmbanpandpcljaifkdelncan
URL Officiel https://chromewebstore.google.com/detail/counttext/hdecimbkbmbanpandpcljaifkdelncan
Description Shows word and characters count and some other info on any selected text (context menu).
Taille du Fichier 10.71 KB
Nombre d'Installations 261
Version Actuelle 2.0.2
Dernière Mise à Jour 2022-10-04
Date de Publication 2016-07-31
Évaluation 3.50/5 Total 6 Évaluations
Développeur Konstantin Kitmanov
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/hogart/count-text-chrome-extension
Langues Prises en Charge 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": []
}