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 to jest Word Count on Webpage By Warp Vessel?

Word Count on Webpage By Warp Vessel to rozszerzenie Chrome opracowane przez Warp Vessel Apps, a jego główną funkcją jest „A simple chrome extension that allows you to instantly see the word count on the current webpage.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Word Count on Webpage By Warp Vessel

Pobierz pliki rozszerzeń Word Count on Webpage By Warp Vessel w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Word Count on Webpage By Warp Vessel Word Count on Webpage By Warp Vessel
ID poojadbpgpkiokkenipihadhecgphkfh
Oficjalny URL https://chromewebstore.google.com/detail/word-count-on-webpage-by/poojadbpgpkiokkenipihadhecgphkfh
Opis A simple chrome extension that allows you to instantly see the word count on the current webpage.
Rozmiar pliku 6.48 KB
Liczba instalacji 321
Aktualna Wersja 1.02
Ostatnia Aktualizacja 2019-05-30
Data Publikacji 2019-05-24
Ocena 3.75/5 Łącznie 4 Oceny
Deweloper Warp Vessel Apps
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        ]
    }
}