Animalese Typing

Plays animal crossing villager sounds whenever you type!

Animalese Typing là gì?

Animalese Typing là một tiện ích mở rộng Chrome được phát triển bởi DageXVIII, và tính năng chính của nó là "Plays animal crossing villager sounds whenever you type!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Animalese Typing

Tải xuống các tệp mở rộng Animalese Typing dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Animalese Typing Animalese Typing
ID djbgadolfboockbofalipohdncimebic
URL Chính Thức https://chromewebstore.google.com/detail/animalese-typing/djbgadolfboockbofalipohdncimebic
Mô tả Plays animal crossing villager sounds whenever you type!
Kích Thước Tệp 2.73 MB
Số Lần Cài Đặt 32,340
Phiên Bản Hiện Tại 1.37
Cập Nhật Lần Cuối 2023-05-26
Ngày Phát Hành 2021-06-09
Đánh Giá 3.97/5 Tổng số 112 Đánh Giá
Nhà Phát Triển DageXVIII
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}