Word Count on Webpage By Warp Vessel

A simple chrome extension that allows you to instantly see the word count on the current webpage.

Apa itu Word Count on Webpage By Warp Vessel?

Word Count on Webpage By Warp Vessel adalah ekstensi Chrome yang dikembangkan oleh Warp Vessel Apps, dan fitur utamanya adalah "A simple chrome extension that allows you to instantly see the word count on the current webpage.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Word Count on Webpage By Warp Vessel

Unduh file ekstensi Word Count on Webpage By Warp Vessel 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

                        A simple chrome extension that allows you to instantly see the word count on the current webpage.                    

Informasi Dasar Ekstensi

Nama Word Count on Webpage By Warp Vessel Word Count on Webpage By Warp Vessel
ID poojadbpgpkiokkenipihadhecgphkfh
URL Resmi https://chromewebstore.google.com/detail/word-count-on-webpage-by/poojadbpgpkiokkenipihadhecgphkfh
Deskripsi A simple chrome extension that allows you to instantly see the word count on the current webpage.
Ukuran File 6.48 KB
Jumlah Instalasi 321
Versi Saat Ini 1.02
Terakhir Diperbarui 2019-05-30
Tanggal Publikasi 2019-05-24
Penilaian 3.75/5 Total 4 Penilaian
Pengembang Warp Vessel Apps
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count on Webpage By Warp Vessel",
    "version": "1.02",
    "manifest_version": 2,
    "permissions": [
        "tabs"
    ],
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Word Count By Warp Vessel",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}