Cat detector

Spots cats in the page you are browsing

Vad är Cat detector?

Cat detector är en Chrome-tillägg utvecklad av Juangui Jordán, och dess huvudfunktion är "Spots cats in the page you are browsing".

Tilläggsskärmbilder

screenshot

Ladda ner Cat detector-förlängningens CRX-fil

Ladda ner Cat detector-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Cat detector Cat detector
ID iiaobbmnomlhhcblbgkdchcfoblbghgi
Officiell webbadress https://chromewebstore.google.com/detail/cat-detector/iiaobbmnomlhhcblbgkdchcfoblbghgi
Beskrivning Spots cats in the page you are browsing
Filstorlek 183 KB
Antal Installationer 20
Aktuell Version 1.0
Senast Uppdaterad 2020-06-03
Publiceringsdatum 2020-06-02
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare Juangui Jordán
Betalningssätt free
Stödda Språk 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"
    ]
}