count(text)

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

Was ist count(text)?

count(text) ist eine Chrome-Erweiterung, die von Konstantin Kitmanov entwickelt wurde, und ihr Hauptmerkmal ist "Shows word and characters count and some other info on any selected text (context menu).".

Erweiterungsscreenshots

screenshot

count(text)-Erweiterungs-CRX-Datei herunterladen

Laden Sie count(text)-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name count(text) count(text)
ID hdecimbkbmbanpandpcljaifkdelncan
Offizielle URL https://chromewebstore.google.com/detail/counttext/hdecimbkbmbanpandpcljaifkdelncan
Beschreibung Shows word and characters count and some other info on any selected text (context menu).
Dateigröße 10.71 KB
Installationsanzahl 261
Aktuelle Version 2.0.2
Letztes Update 2022-10-04
Veröffentlichungsdatum 2016-07-31
Bewertung 3.50/5 Insgesamt 6 Bewertungen
Entwickler Konstantin Kitmanov
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/hogart/count-text-chrome-extension
Unterstützte Sprachen 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": []
}