Animalese Typing

Plays animal crossing villager sounds whenever you type!

什么是Animalese Typing?

Animalese Typing是由DageXVIII开发的Chrome扩展程序,该扩展的主要功能是“Plays animal crossing villager sounds whenever you type!”。

扩展截图

screenshot

下载Animalese Typing扩展crx文件

下载Animalese Typing扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Animalese Typing Animalese Typing
ID djbgadolfboockbofalipohdncimebic
官方URL https://chromewebstore.google.com/detail/animalese-typing/djbgadolfboockbofalipohdncimebic
简介 Plays animal crossing villager sounds whenever you type!
文件大小 2.73 MB
安装次数 32,340
当前版本 1.37
更新时间 2023-05-26
上架时间 2021-06-09
评分 3.97/5 共112次评分
开发者 DageXVIII
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    }
}