Word Count on Webpage By Warp Vessel

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

Hvad er Word Count on Webpage By Warp Vessel?

Word Count on Webpage By Warp Vessel er en Chrome-udvidelse udviklet af Warp Vessel Apps, og dens hovedfunktion er "A simple chrome extension that allows you to instantly see the word count on the current webpage.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Word Count on Webpage By Warp Vessel-udvidelses-CRX-fil

Download Word Count on Webpage By Warp Vessel-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Word Count on Webpage By Warp Vessel Word Count on Webpage By Warp Vessel
ID poojadbpgpkiokkenipihadhecgphkfh
Officiel URL https://chromewebstore.google.com/detail/word-count-on-webpage-by/poojadbpgpkiokkenipihadhecgphkfh
Beskrivelse A simple chrome extension that allows you to instantly see the word count on the current webpage.
Filstørrelse 6.48 KB
Antal Installationer 321
Nuværende Version 1.02
Senest Opdateret 2019-05-30
Udgivelsesdato 2019-05-24
Bedømmelse 3.75/5 Samlet 4 Bedømmelser
Udvikler Warp Vessel Apps
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
        ]
    }
}