Word Count

Display the number of words and characters within highlight in contextMenu and bottom right

Co to jest Word Count?

Word Count to rozszerzenie Chrome opracowane przez Zeno, a jego główną funkcją jest „Display the number of words and characters within highlight in contextMenu and bottom right”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Word Count

Pobierz pliki rozszerzeń Word Count 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

                        Display the number of words and characters within highlight in context menu and bottom right

On highlight, show the word count and the number of characters immediately.

Settings to change to 
- dark count box 
- hide count box

Chrome extension word counter to easily count words & characters                    

Podstawowe informacje o rozszerzeniu

Nazwa Word Count Word Count
ID inaklojbeljbfmkkpjfmjjgehckpeohf
Oficjalny URL https://chromewebstore.google.com/detail/word-count/inaklojbeljbfmkkpjfmjjgehckpeohf
Opis Display the number of words and characters within highlight in contextMenu and bottom right
Rozmiar pliku 15.59 KB
Liczba instalacji 53
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2022-06-09
Data Publikacji 2022-06-09
Deweloper Zeno
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.buymeacoffee.com/WhyNotBeFrg
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Word Count",
    "version": "0.2",
    "description": "Display the number of words and characters within highlight in contextMenu and bottom right",
    "icons": {
        "16": "icons\/logo.png",
        "48": "icons\/logo.png",
        "128": "icons\/logo.png"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "action": {
        "default_title": "test",
        "default_popup": "key.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "test.js"
            ]
        }
    ]
}