count(text)

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

Hvad er count(text)?

count(text) er en Chrome-udvidelse udviklet af Konstantin Kitmanov, og dens hovedfunktion er "Shows word and characters count and some other info on any selected text (context menu).".

Udvidelsesskærmbilleder

screenshot

Download count(text)-udvidelses-CRX-fil

Download count(text)-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn count(text) count(text)
ID hdecimbkbmbanpandpcljaifkdelncan
Officiel URL https://chromewebstore.google.com/detail/counttext/hdecimbkbmbanpandpcljaifkdelncan
Beskrivelse Shows word and characters count and some other info on any selected text (context menu).
Filstørrelse 10.71 KB
Antal Installationer 261
Nuværende Version 2.0.2
Senest Opdateret 2022-10-04
Udgivelsesdato 2016-07-31
Bedømmelse 3.50/5 Samlet 6 Bedømmelser
Udvikler Konstantin Kitmanov
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/hogart/count-text-chrome-extension
Understøttede Sprog 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": []
}