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
官方網址 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"
    }
}