UwU Translator

Translate text to uwu speech.

UwU Translatorคืออะไร?

UwU Translator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Swmarly และคุณลักษณะหลักของมันคือ "Translate text to uwu speech."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย UwU Translator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension enables a feature called "Uwu Translation" for web content. When enabled, it applies a set of text transformation rules to replace certain characters and character combinations in the displayed text. These rules include replacing "r" and "l" with "w," "n" followed by a vowel with "ny," "th" with "d," and adding "uwu" after exclamation marks. Additionally, it can transform YouTube video titles.

The extension continuously monitors and translates text on web pages, even for dynamically loaded content. Users can toggle the translation on or off. It also periodically updates the translations to ensure the transformed text remains consistent.

In essence, this extension adds a playful and whimsical twist to the text content of web pages by applying these character substitutions and translations according to the defined rules.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ UwU Translator UwU Translator
ID pkehpdkmjgijhepnlclhdneagmnplemn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/uwu-translator/pkehpdkmjgijhepnlclhdneagmnplemn
คำอธิบาย Translate text to uwu speech.
ขนาดไฟล์ 9.24 KB
จำนวนการติดตั้ง 83
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2023-09-16
วันที่เผยแพร่ 2023-09-15
ผู้พัฒนา Swmarly
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "UwU Translator",
    "version": "1.0",
    "description": "Translate text to uwu speech.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "popup.html",
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}