Cat detector

Spots cats in the page you are browsing

Qu'est-ce que Cat detector ?

Cat detector est une extension Chrome développée par Juangui Jordán, et sa fonction principale est "Spots cats in the page you are browsing".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Cat detector

Téléchargez les fichiers d'extension Cat detector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Cat detector Cat detector
ID iiaobbmnomlhhcblbgkdchcfoblbghgi
URL Officiel https://chromewebstore.google.com/detail/cat-detector/iiaobbmnomlhhcblbgkdchcfoblbghgi
Description Spots cats in the page you are browsing
Taille du Fichier 183 KB
Nombre d'Installations 20
Version Actuelle 1.0
Dernière Mise à Jour 2020-06-03
Date de Publication 2020-06-02
Évaluation 1.00/5 Total 1 Évaluations
Développeur Juangui Jordán
Type de Paiement free
Langues Prises en Charge 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"
    ]
}