Word Count

Counts the words in the document selection and text entry.

Wat is Word Count?

Word Count is een Chrome-extensie ontwikkeld door shawn.hoover, en de belangrijkste functie is "Counts the words in the document selection and text entry.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Word Count

Download Word Count-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Word Count Word Count
ID cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Officiële URL https://chrome.google.com/webstore/detail/word-count/cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Beschrijving Counts the words in the document selection and text entry.
Bestandsgrootte 9.76 KB
Aantal Installaties 195
Huidige Versie 0.4
Laatst Bijgewerkt 2015-07-30
Publicatiedatum 2015-07-30
Beoordeling 3.14/5 Totaal 7 Beoordelingen
Ontwikkelaar shawn.hoover
Betalingswijze free
Extensiewebsite https://bitbucket.org/shoover/word-count-ext
Ondersteunde Talen 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"
        ]
    }
}