Word Counter

Counting the amount of a given word in the current page

Что такое Word Counter?

Word Counter - это расширение Chrome, разработанное chatjonsmedia, и его основная функция - "Counting the amount of a given word in the current page".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Word Counter

Скачайте файлы расширений Word Counter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Word Counter is a fun extension that will let the user count how many words appear in a page.                    

Основная информация о расширении

Название Word Counter Word Counter
ID ledamfbeelplcjfjclabbckmglgkmhdf
Официальный URL https://chrome.google.com/webstore/detail/word-counter/ledamfbeelplcjfjclabbckmglgkmhdf
Описание Counting the amount of a given word in the current page
Размер файла 14.55 KB
Количество установок 2,959
Текущая Версия 1
Последнее Обновление 2022-12-05
Дата публикации 2022-12-05
Разработчик chatjonsmedia
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://home.ujhimselvepost.info/
URL страницы помощи https://home.ujhimselvepost.info/contact.html
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Counting the amount of a given word in the current page",
    "icons": {
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png",
        "default_title": "Word Counter",
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "name": "Word Counter",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}