Word Count

Counts the words in the document selection and text entry.

Vad är Word Count?

Word Count är en Chrome-tillägg utvecklad av shawn.hoover, och dess huvudfunktion är "Counts the words in the document selection and text entry.".

Tilläggsskärmbilder

screenshot
screenshot

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

Ladda ner Word Count-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

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

Namn Word Count Word Count
ID cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Officiell webbadress https://chrome.google.com/webstore/detail/word-count/cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Beskrivning Counts the words in the document selection and text entry.
Filstorlek 9.76 KB
Antal Installationer 195
Aktuell Version 0.4
Senast Uppdaterad 2015-07-30
Publiceringsdatum 2015-07-30
Betyg 3.14/5 Totalt 7 Betyg
Utvecklare shawn.hoover
Betalningssätt free
Tilläggswebbplats https://bitbucket.org/shoover/word-count-ext
Stödda Språk 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"
        ]
    }
}