Word Counter

Displays word count in the extensions toolbar.

Vad är Word Counter?

Word Counter är en Chrome-tillägg utvecklad av chriham3, och dess huvudfunktion är "Displays word count in the extensions toolbar.".

Tilläggsskärmbilder

screenshot

Ladda ner Word Counter-förlängningens CRX-fil

Ladda ner Word Counter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Word Counter Word Counter
ID ipmlaaleafabnehpmokomegjjodbmoik
Officiell webbadress https://chromewebstore.google.com/detail/word-counter/ipmlaaleafabnehpmokomegjjodbmoik
Beskrivning Displays word count in the extensions toolbar.
Filstorlek 9.84 KB
Antal Installationer 411
Aktuell Version 0.2
Senast Uppdaterad 2017-12-05
Publiceringsdatum 2017-12-04
Betyg 4.00/5 Totalt 7 Betyg
Utvecklare chriham3
Betalningssätt free
Stödda Språk 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"
        ]
    }
}