Count selected characters and words

A simple tool to count selected characters and words.

Co to jest Count selected characters and words?

Count selected characters and words to rozszerzenie Chrome opracowane przez http://riangraphics.com, a jego główną funkcją jest „A simple tool to count selected characters and words.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Count selected characters and words

Pobierz pliki rozszerzeń Count selected characters and words 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

                        Count selected characters and words on the fly, just select the text and get the result, to enable it just save the settings                    

Podstawowe informacje o rozszerzeniu

Nazwa Count selected characters and words Count selected characters and words
ID pdbaijkfobjcdkppnnmjddjgfhjdpoge
Oficjalny URL https://chrome.google.com/webstore/detail/count-selected-characters/pdbaijkfobjcdkppnnmjddjgfhjdpoge
Opis A simple tool to count selected characters and words.
Rozmiar pliku 7.42 KB
Liczba instalacji 75
Aktualna Wersja 1.0.4
Ostatnia Aktualizacja 2018-10-09
Data Publikacji 2018-10-09
Ocena 4.50/5 Łącznie 4 Oceny
Deweloper http://riangraphics.com
Typ Płatności free
Strona Rozszerzenia https://riangraphics.com/highlithed-word-counter/
Adres URL Strony Pomocy https://riangraphics.com/highlithed-word-counter/#faq
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Count selected characters and words",
    "description": "A simple tool to count selected characters and words.",
    "version": "1.0.4",
    "author": "RianGraphics",
    "browser_action": {
        "default_icon": "tab-icon.png",
        "default_popup": "index.html",
        "default_title": "Count selected characters and words"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "rc-styles.css"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}