Cat detector

Spots cats in the page you are browsing

Co je Cat detector?

Cat detector je rozšíření Chrome vyvinuté Juangui Jordán, a jeho hlavní funkcí je „Spots cats in the page you are browsing“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Cat detector

Stáhněte si soubory rozšíření Cat detector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Cat detector Cat detector
ID iiaobbmnomlhhcblbgkdchcfoblbghgi
Oficiální URL https://chromewebstore.google.com/detail/cat-detector/iiaobbmnomlhhcblbgkdchcfoblbghgi
Popis Spots cats in the page you are browsing
Velikost souboru 183 KB
Počet instalací 20
Aktuální Verze 1.0
Poslední Aktualizace 2020-06-03
Datum Vydání 2020-06-02
Hodnocení 1.00/5 Celkem 1 Hodnocení
Vývojář Juangui Jordán
Typ Platby free
Podporované Jazyky 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"
    ]
}