Word Count

Counts the words in the document selection and text entry.

Co to jest Word Count?

Word Count to rozszerzenie Chrome opracowane przez shawn.hoover, a jego główną funkcją jest „Counts the words in the document selection and text entry.”.

Zrzuty ekranu rozszerzenia

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

                        Counts the words in the document selection and text entry. The count is displayed in an icon in the location bar. Use this to track word counts as you type or if you're curious how many words are in part of a web page.                    

Podstawowe informacje o rozszerzeniu

Nazwa Word Count Word Count
ID cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Oficjalny URL https://chrome.google.com/webstore/detail/word-count/cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Opis Counts the words in the document selection and text entry.
Rozmiar pliku 9.76 KB
Liczba instalacji 195
Aktualna Wersja 0.4
Ostatnia Aktualizacja 2015-07-30
Data Publikacji 2015-07-30
Ocena 3.14/5 Łącznie 7 Oceny
Deweloper shawn.hoover
Typ Płatności free
Strona Rozszerzenia https://bitbucket.org/shoover/word-count-ext
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count",
    "version": "0.4",
    "author": "Shawn Hoover",
    "manifest_version": 2,
    "description": "Counts the words in the document selection and text entry.",
    "icons": {
        "64": "logo64.png",
        "128": "logo128.png"
    },
    "permissions": [
        "tabs"
    ],
    "page_action": {
        "default_title": "Word Count"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}