Word Count

Counts the words in the document selection and text entry.

Hvad er Word Count?

Word Count er en Chrome-udvidelse udviklet af shawn.hoover, og dens hovedfunktion er "Counts the words in the document selection and text entry.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Word Count-udvidelses-CRX-fil

Download Word Count-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Word Count Word Count
ID cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Officiel URL https://chrome.google.com/webstore/detail/word-count/cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Beskrivelse Counts the words in the document selection and text entry.
Filstørrelse 9.76 KB
Antal Installationer 195
Nuværende Version 0.4
Senest Opdateret 2015-07-30
Udgivelsesdato 2015-07-30
Bedømmelse 3.14/5 Samlet 7 Bedømmelser
Udvikler shawn.hoover
Betalingsmetode free
Udvidelseswebsted https://bitbucket.org/shoover/word-count-ext
Understøttede Sprog 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"
        ]
    }
}