Count Words

Count the amount of words in your page!

Co to jest Count Words?

Count Words to rozszerzenie Chrome opracowane przez andinomedia.co, a jego główną funkcją jest „Count the amount of words in your page!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Count Words

Pobierz pliki rozszerzeń Count Words 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

                        Count Words is a fun extension that will count how many times a word appears in the user's page.                    

Podstawowe informacje o rozszerzeniu

Nazwa Count Words Count Words
ID bcpckhlbhiofhkbjmjnfdgaalmgbgpoa
Oficjalny URL https://chrome.google.com/webstore/detail/count-words/bcpckhlbhiofhkbjmjnfdgaalmgbgpoa
Opis Count the amount of words in your page!
Rozmiar pliku 14.58 KB
Liczba instalacji 1,649
Aktualna Wersja 1
Ostatnia Aktualizacja 2022-12-08
Data Publikacji 2022-12-08
Deweloper andinomedia.co
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://home.sdgebralefuki.info/
Adres URL Strony Pomocy https://home.sdgebralefuki.info/contact.html
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Count the amount of words in your page!",
    "icons": {
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png",
        "default_title": "Count Words",
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "name": "Count Words",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}