Animalese Typing

Plays animal crossing villager sounds whenever you type!

Qu'est-ce que Animalese Typing ?

Animalese Typing est une extension Chrome développée par DageXVIII, et sa fonction principale est "Plays animal crossing villager sounds whenever you type!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Animalese Typing

Téléchargez les fichiers d'extension Animalese Typing au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Animalese Typing Animalese Typing
ID djbgadolfboockbofalipohdncimebic
URL Officiel https://chromewebstore.google.com/detail/animalese-typing/djbgadolfboockbofalipohdncimebic
Description Plays animal crossing villager sounds whenever you type!
Taille du Fichier 2.73 MB
Nombre d'Installations 32,340
Version Actuelle 1.37
Dernière Mise à Jour 2023-05-26
Date de Publication 2021-06-09
Évaluation 3.97/5 Total 112 Évaluations
Développeur DageXVIII
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}