Cat detector

Spots cats in the page you are browsing

Cos'è Cat detector?

Cat detector è un'estensione di Chrome sviluppata da Juangui Jordán, e la sua funzione principale è "Spots cats in the page you are browsing".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Cat detector

Scarica i file di estensione Cat detector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Cat detector Cat detector
ID iiaobbmnomlhhcblbgkdchcfoblbghgi
URL Ufficiale https://chromewebstore.google.com/detail/cat-detector/iiaobbmnomlhhcblbgkdchcfoblbghgi
Descrizione Spots cats in the page you are browsing
Dimensione del File 183 KB
Conteggio Installazioni 20
Versione Corrente 1.0
Ultimo Aggiornamento 2020-06-03
Data di Pubblicazione 2020-06-02
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore Juangui Jordán
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}