count(text)

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

Co je count(text)?

count(text) je rozšíření Chrome vyvinuté Konstantin Kitmanov, a jeho hlavní funkcí je „Shows word and characters count and some other info on any selected text (context menu).“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření count(text)

Stáhněte si soubory rozšíření count(text) ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název count(text) count(text)
ID hdecimbkbmbanpandpcljaifkdelncan
Oficiální URL https://chromewebstore.google.com/detail/counttext/hdecimbkbmbanpandpcljaifkdelncan
Popis Shows word and characters count and some other info on any selected text (context menu).
Velikost souboru 10.71 KB
Počet instalací 261
Aktuální Verze 2.0.2
Poslední Aktualizace 2022-10-04
Datum Vydání 2016-07-31
Hodnocení 3.50/5 Celkem 6 Hodnocení
Vývojář Konstantin Kitmanov
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/hogart/count-text-chrome-extension
Podporované Jazyky 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": []
}