Word Count

Counts the words in the document selection and text entry.

Apa itu Word Count?

Word Count adalah ekstensi Chrome yang dikembangkan oleh shawn.hoover, dan fitur utamanya adalah "Counts the words in the document selection and text entry.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Word Count

Unduh file ekstensi Word Count dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Word Count Word Count
ID cipmjkgfjmkcmjfoidhpjfoihkgggmfk
URL Resmi https://chrome.google.com/webstore/detail/word-count/cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Deskripsi Counts the words in the document selection and text entry.
Ukuran File 9.76 KB
Jumlah Instalasi 195
Versi Saat Ini 0.4
Terakhir Diperbarui 2015-07-30
Tanggal Publikasi 2015-07-30
Penilaian 3.14/5 Total 7 Penilaian
Pengembang shawn.hoover
Tipe Pembayaran free
Situs Ekstensi https://bitbucket.org/shoover/word-count-ext
Bahasa yang Didukung 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"
        ]
    }
}