Cat detector

Spots cats in the page you are browsing

Что такое Cat detector?

Cat detector - это расширение Chrome, разработанное Juangui Jordán, и его основная функция - "Spots cats in the page you are browsing".

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

screenshot

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

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

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

                        Cats are everywhere on the internet.Whether you are a cat lover or completely frightened by cats, this extension can help you, by early detecting cats in the web page that you are browsing.

This extension counts the number of cat words displayed in the current page. On detection, a counter is displayed over the extension icon, and meow sounds are played. If the "Auto-detect" option is checked, each time you browse a web page, the cats are detected. If not, just click on the extension icon and select the "Detect cats" option.                    

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

Название Cat detector Cat detector
ID iiaobbmnomlhhcblbgkdchcfoblbghgi
Официальный URL https://chromewebstore.google.com/detail/cat-detector/iiaobbmnomlhhcblbgkdchcfoblbghgi
Описание Spots cats in the page you are browsing
Размер файла 183 KB
Количество установок 20
Текущая Версия 1.0
Последнее Обновление 2020-06-03
Дата публикации 2020-06-02
Рейтинг 1.00/5 Всего 1 оценок
Разработчик Juangui Jordán
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cat detector",
    "description": "Spots cats in the page you are browsing",
    "manifest_version": 2,
    "version": "1.0",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/footprint-16.png",
        "32": "images\/footprint-32.png",
        "48": "images\/footprint-48.png",
        "128": "images\/footprint-128.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ]
}