Count Words
Count the amount of words in your page!
Что такое Count Words?
Count Words - это расширение Chrome, разработанное andinomedia.co, и его основная функция - "Count the amount of words in your page!".
Снимки экрана расширения
Скачать файл CRX расширения Count Words
Скачайте файлы расширений Count Words в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Count Words is a fun extension that will count how many times a word appears in the user's page.
Основная информация о расширении
Название | |
ID | bcpckhlbhiofhkbjmjnfdgaalmgbgpoa |
Официальный URL | https://chrome.google.com/webstore/detail/count-words/bcpckhlbhiofhkbjmjnfdgaalmgbgpoa |
Описание | Count the amount of words in your page! |
Размер файла | 14.58 KB |
Количество установок | 1,649 |
Текущая Версия | 1 |
Последнее Обновление | 2022-12-08 |
Дата публикации | 2022-12-08 |
Разработчик | andinomedia.co |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://home.sdgebralefuki.info/ |
URL страницы помощи | https://home.sdgebralefuki.info/contact.html |
Поддерживаемые языки | 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" ] } ] } |