Animalese Typing

Plays animal crossing villager sounds whenever you type!

Animalese Typingคืออะไร?

Animalese Typing เป็นส่วนขยายของ Chrome ที่พัฒนาโดย DageXVIII และคุณลักษณะหลักของมันคือ "Plays animal crossing villager sounds whenever you type!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Animalese Typing

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}