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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}