count(text)

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

Co to jest count(text)?

count(text) to rozszerzenie Chrome opracowane przez Konstantin Kitmanov, a jego główną funkcją jest „Shows word and characters count and some other info on any selected text (context menu).”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia count(text)

Pobierz pliki rozszerzeń count(text) w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa count(text) count(text)
ID hdecimbkbmbanpandpcljaifkdelncan
Oficjalny URL https://chromewebstore.google.com/detail/counttext/hdecimbkbmbanpandpcljaifkdelncan
Opis Shows word and characters count and some other info on any selected text (context menu).
Rozmiar pliku 10.71 KB
Liczba instalacji 261
Aktualna Wersja 2.0.2
Ostatnia Aktualizacja 2022-10-04
Data Publikacji 2016-07-31
Ocena 3.50/5 Łącznie 6 Oceny
Deweloper Konstantin Kitmanov
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/hogart/count-text-chrome-extension
Obsługiwane Języki 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": []
}