Cat detector

Spots cats in the page you are browsing

Wat is Cat detector?

Cat detector is een Chrome-extensie ontwikkeld door Juangui Jordán, en de belangrijkste functie is "Spots cats in the page you are browsing".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Cat detector

Download Cat detector-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Cat detector Cat detector
ID iiaobbmnomlhhcblbgkdchcfoblbghgi
Officiële URL https://chromewebstore.google.com/detail/cat-detector/iiaobbmnomlhhcblbgkdchcfoblbghgi
Beschrijving Spots cats in the page you are browsing
Bestandsgrootte 183 KB
Aantal Installaties 20
Huidige Versie 1.0
Laatst Bijgewerkt 2020-06-03
Publicatiedatum 2020-06-02
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Juangui Jordán
Betalingswijze free
Ondersteunde Talen 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"
    ]
}