Animalese Typing

Plays animal crossing villager sounds whenever you type!

Co to jest Animalese Typing?

Animalese Typing to rozszerzenie Chrome opracowane przez DageXVIII, a jego główną funkcją jest „Plays animal crossing villager sounds whenever you type!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Animalese Typing

Pobierz pliki rozszerzeń Animalese Typing 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

                        A small, fun and somewhat annoying extension that will speak Animalese whenever you type online. This is the first chrome extension I've ever made. I was learning some html and css mostly on my own, and was curious to see if I could make something work. Enjoy! (This extension will not work in the google search bar and on certain websites.)                    

Podstawowe informacje o rozszerzeniu

Nazwa Animalese Typing Animalese Typing
ID djbgadolfboockbofalipohdncimebic
Oficjalny URL https://chromewebstore.google.com/detail/animalese-typing/djbgadolfboockbofalipohdncimebic
Opis Plays animal crossing villager sounds whenever you type!
Rozmiar pliku 2.73 MB
Liczba instalacji 32,340
Aktualna Wersja 1.37
Ostatnia Aktualizacja 2023-05-26
Data Publikacji 2021-06-09
Ocena 3.97/5 Łącznie 112 Oceny
Deweloper DageXVIII
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Joshua Sherry",
    "manifest_version": 3,
    "name": "Animalese Typing",
    "description": "Plays animal crossing villager sounds whenever you type!",
    "version": "1.37",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "animalese.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "128": "assets\/images\/icon_off.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "offscreen"
    ],
    "icons": {
        "48": "assets\/images\/icon48.png",
        "128": "assets\/images\/icon128.png"
    }
}