Animalese Typing

Plays animal crossing villager sounds whenever you type!

Vad är Animalese Typing?

Animalese Typing är en Chrome-tillägg utvecklad av DageXVIII, och dess huvudfunktion är "Plays animal crossing villager sounds whenever you type!".

Tilläggsskärmbilder

screenshot

Ladda ner Animalese Typing-förlängningens CRX-fil

Ladda ner Animalese Typing-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

                        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.)                    

Grundläggande Information om Tillägg

Namn Animalese Typing Animalese Typing
ID djbgadolfboockbofalipohdncimebic
Officiell webbadress https://chromewebstore.google.com/detail/animalese-typing/djbgadolfboockbofalipohdncimebic
Beskrivning Plays animal crossing villager sounds whenever you type!
Filstorlek 2.73 MB
Antal Installationer 32,340
Aktuell Version 1.37
Senast Uppdaterad 2023-05-26
Publiceringsdatum 2021-06-09
Betyg 3.97/5 Totalt 112 Betyg
Utvecklare DageXVIII
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}