Word Count on Webpage By Warp Vessel

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

Cos'è Word Count on Webpage By Warp Vessel?

Word Count on Webpage By Warp Vessel è un'estensione di Chrome sviluppata da Warp Vessel Apps, e la sua funzione principale è "A simple chrome extension that allows you to instantly see the word count on the current webpage.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Word Count on Webpage By Warp Vessel

Scarica i file di estensione Word Count on Webpage By Warp Vessel in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Word Count on Webpage By Warp Vessel Word Count on Webpage By Warp Vessel
ID poojadbpgpkiokkenipihadhecgphkfh
URL Ufficiale https://chromewebstore.google.com/detail/word-count-on-webpage-by/poojadbpgpkiokkenipihadhecgphkfh
Descrizione A simple chrome extension that allows you to instantly see the word count on the current webpage.
Dimensione del File 6.48 KB
Conteggio Installazioni 321
Versione Corrente 1.02
Ultimo Aggiornamento 2019-05-30
Data di Pubblicazione 2019-05-24
Valutazione 3.75/5 Totale 4 Valutazioni
Sviluppatore Warp Vessel Apps
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        ]
    }
}