Word Count

Counts the words in the document selection and text entry.

Co je Word Count?

Word Count je rozšíření Chrome vyvinuté shawn.hoover, a jeho hlavní funkcí je „Counts the words in the document selection and text entry.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Word Count

Stáhněte si soubory rozšíření Word Count ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Word Count Word Count
ID cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Oficiální URL https://chrome.google.com/webstore/detail/word-count/cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Popis Counts the words in the document selection and text entry.
Velikost souboru 9.76 KB
Počet instalací 195
Aktuální Verze 0.4
Poslední Aktualizace 2015-07-30
Datum Vydání 2015-07-30
Hodnocení 3.14/5 Celkem 7 Hodnocení
Vývojář shawn.hoover
Typ Platby free
Webové stránky Rozšíření https://bitbucket.org/shoover/word-count-ext
Podporované Jazyky 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"
        ]
    }
}