Wandering Cat

The cat wanders

Co to jest Wandering Cat?

Wandering Cat to rozszerzenie Chrome opracowane przez willmccambley, a jego główną funkcją jest „The cat wanders”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Wandering Cat

Pobierz pliki rozszerzeń Wandering Cat 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

                        This extension creates an 8-bit cat that will walk randomly around your browser. You can double click to remove the cat.                    

Podstawowe informacje o rozszerzeniu

Nazwa Wandering Cat Wandering Cat
ID fekmcdeljonllillnbjhophkhnjhhjpd
Oficjalny URL https://chromewebstore.google.com/detail/wandering-cat/fekmcdeljonllillnbjhophkhnjhhjpd
Opis The cat wanders
Rozmiar pliku 165 KB
Liczba instalacji 193
Aktualna Wersja 2.01
Ostatnia Aktualizacja 2021-12-01
Data Publikacji 2021-11-30
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper willmccambley
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://sedoc.codes
Adres URL Strony Pomocy https://github.com/WillCMcC/cat_wanderer
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Wandering Cat",
    "description": "The cat wanders",
    "version": "2.01",
    "permissions": [],
    "browser_action": {
        "default_icon": "img\/F_SIT.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "img\/catman.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "lib\/onload.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*"
    ]
}