Word Count on Webpage By Warp Vessel

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

Co je Word Count on Webpage By Warp Vessel?

Word Count on Webpage By Warp Vessel je rozšíření Chrome vyvinuté Warp Vessel Apps, a jeho hlavní funkcí je „A simple chrome extension that allows you to instantly see the word count on the current webpage.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Word Count on Webpage By Warp Vessel

Stáhněte si soubory rozšíření Word Count on Webpage By Warp Vessel ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Word Count on Webpage By Warp Vessel Word Count on Webpage By Warp Vessel
ID poojadbpgpkiokkenipihadhecgphkfh
Oficiální URL https://chromewebstore.google.com/detail/word-count-on-webpage-by/poojadbpgpkiokkenipihadhecgphkfh
Popis A simple chrome extension that allows you to instantly see the word count on the current webpage.
Velikost souboru 6.48 KB
Počet instalací 321
Aktuální Verze 1.02
Poslední Aktualizace 2019-05-30
Datum Vydání 2019-05-24
Hodnocení 3.75/5 Celkem 4 Hodnocení
Vývojář Warp Vessel Apps
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
        ]
    }
}