Word Counter

Counting the amount of a given word in the current page

Apa itu Word Counter?

Word Counter adalah ekstensi Chrome yang dikembangkan oleh chatjonsmedia, dan fitur utamanya adalah "Counting the amount of a given word in the current page".

Screenshot Ekstensi

screenshot

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

                        Word Counter is a fun extension that will let the user count how many words appear in a page.                    

Informasi Dasar Ekstensi

Nama Word Counter Word Counter
ID ledamfbeelplcjfjclabbckmglgkmhdf
URL Resmi https://chrome.google.com/webstore/detail/word-counter/ledamfbeelplcjfjclabbckmglgkmhdf
Deskripsi Counting the amount of a given word in the current page
Ukuran File 14.55 KB
Jumlah Instalasi 2,959
Versi Saat Ini 1
Terakhir Diperbarui 2022-12-05
Tanggal Publikasi 2022-12-05
Pengembang chatjonsmedia
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://home.ujhimselvepost.info/
URL Halaman Bantuan https://home.ujhimselvepost.info/contact.html
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Counting the amount of a given word in the current page",
    "icons": {
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png",
        "default_title": "Word Counter",
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "name": "Word Counter",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}