Word Counter

Displays word count in the extensions toolbar.

Co to jest Word Counter?

Word Counter to rozszerzenie Chrome opracowane przez chriham3, a jego główną funkcją jest „Displays word count in the extensions toolbar.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Word Counter

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

                        Simple word counting extension. Simply select the text you wish to count, and the word count will appear on the icon at the extensions bar in the top right corner.                    

Podstawowe informacje o rozszerzeniu

Nazwa Word Counter Word Counter
ID ipmlaaleafabnehpmokomegjjodbmoik
Oficjalny URL https://chromewebstore.google.com/detail/word-counter/ipmlaaleafabnehpmokomegjjodbmoik
Opis Displays word count in the extensions toolbar.
Rozmiar pliku 9.84 KB
Liczba instalacji 411
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2017-12-05
Data Publikacji 2017-12-04
Ocena 4.00/5 Łącznie 7 Oceny
Deweloper chriham3
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Counter",
    "description": "Displays word count in the extensions toolbar.",
    "version": "0.2",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "32": "icon32.png",
        "48": "icon32.png",
        "128": "icon32.png"
    },
    "browser_action": {
        "default_icon": "icon32.png",
        "default_title": "Word Counter",
        "default_popup": "instructions.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "checker.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "wordcounter.js"
        ]
    }
}