Cat detector

Spots cats in the page you are browsing

Co to jest Cat detector?

Cat detector to rozszerzenie Chrome opracowane przez Juangui Jordán, a jego główną funkcją jest „Spots cats in the page you are browsing”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Cat detector

Pobierz pliki rozszerzeń Cat detector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Cat detector Cat detector
ID iiaobbmnomlhhcblbgkdchcfoblbghgi
Oficjalny URL https://chromewebstore.google.com/detail/cat-detector/iiaobbmnomlhhcblbgkdchcfoblbghgi
Opis Spots cats in the page you are browsing
Rozmiar pliku 183 KB
Liczba instalacji 20
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-06-03
Data Publikacji 2020-06-02
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper Juangui Jordán
Typ Płatności free
Obsługiwane Języki 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"
    ]
}