Word Counter

Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.

Apa itu Word Counter?

Word Counter adalah ekstensi Chrome yang dikembangkan oleh mileswiesenthal, dan fitur utamanya adalah "Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.".

Unduh Berkas CRX Ekstensi Word Counter

Unduh file ekstensi Word Counter 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

                        Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.                    

Informasi Dasar Ekstensi

Nama Word Counter Word Counter
ID genbfnkneekjmppgniacjffdphjgadpd
URL Resmi https://chrome.google.com/webstore/detail/word-counter/genbfnkneekjmppgniacjffdphjgadpd
Deskripsi Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.
Ukuran File 359 KB
Jumlah Instalasi 19
Versi Saat Ini 1.0
Terakhir Diperbarui 2017-08-07
Tanggal Publikasi 2017-08-07
Penilaian 1.00/5 Total 1 Penilaian
Pengembang mileswiesenthal
Tipe Pembayaran free
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Counter",
    "short_name": "PM",
    "description": "Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Word Counter"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "googleDocsUtil.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}