Word Counter

Displays word count in the extensions toolbar.

Hvad er Word Counter?

Word Counter er en Chrome-udvidelse udviklet af chriham3, og dens hovedfunktion er "Displays word count in the extensions toolbar.".

Udvidelsesskærmbilleder

screenshot

Download Word Counter-udvidelses-CRX-fil

Download Word Counter-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

                        Simple word counting extension. Simply select the text you wish to count, and the word count will appear on the icon at the extensions bar in the top right corner.                    

Grundlæggende oplysninger om udvidelsen

Navn Word Counter Word Counter
ID ipmlaaleafabnehpmokomegjjodbmoik
Officiel URL https://chromewebstore.google.com/detail/word-counter/ipmlaaleafabnehpmokomegjjodbmoik
Beskrivelse Displays word count in the extensions toolbar.
Filstørrelse 9.84 KB
Antal Installationer 411
Nuværende Version 0.2
Senest Opdateret 2017-12-05
Udgivelsesdato 2017-12-04
Bedømmelse 4.00/5 Samlet 7 Bedømmelser
Udvikler chriham3
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Counter",
    "description": "Displays word count in the extensions toolbar.",
    "version": "0.2",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "32": "icon32.png",
        "48": "icon32.png",
        "128": "icon32.png"
    },
    "browser_action": {
        "default_icon": "icon32.png",
        "default_title": "Word Counter",
        "default_popup": "instructions.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "checker.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "wordcounter.js"
        ]
    }
}