Cat detector

Spots cats in the page you are browsing

O que é Cat detector?

Cat detector é uma extensão do Chrome desenvolvida por Juangui Jordán, e sua principal característica é "Spots cats in the page you are browsing".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Cat detector

Baixe arquivos de extensão Cat detector no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Cat detector Cat detector
ID iiaobbmnomlhhcblbgkdchcfoblbghgi
URL Oficial https://chromewebstore.google.com/detail/cat-detector/iiaobbmnomlhhcblbgkdchcfoblbghgi
Descrição Spots cats in the page you are browsing
Tamanho do Arquivo 183 KB
Contagem de Instalações 20
Versão Atual 1.0
Última Atualização 2020-06-03
Data de Publicação 2020-06-02
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor Juangui Jordán
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}