Universal uwuifyer

Press Alt + U to type uwu style on ANY website or chat room instantly!

目前為 2026-08-18 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Universal uwuifyer
// @namespace    http://tampermonkey.net
// @version      2.0
// @description  Press Alt + U to type uwu style on ANY website or chat room instantly!
// @author       You
// @license      MIT
// @match        *://*/*
// @include      *
// @grant        none
// @run-at       document-end
// ==/UserScript==

(function() {
    'use strict';

    // Core translation rules
    function uwuify(text) {
        return text
            .replace(/[lr]/g, 'w')
            .replace(/[LR]/g, 'W')
            .replace(/n([aeiou])/g, 'ny$1')
            .replace(/N([aeiou])/g, 'Ny$1')
            .replace(/N([AEIOU])/g, 'NY$1')
            .replace(/ove/g, 'uv');
    }

    // Force text injection regardless of security policies
    function forceInsert(targetElement, finalTxt) {
        targetElement.focus();
        
        if (targetElement.tagName === 'INPUT' || targetElement.tagName === 'TEXTAREA') {
            targetElement.value = finalTxt;
            targetElement.dispatchEvent(new Event('input', { bubbles: true }));
        } else {
            // Brute-force for contenteditables (Discord, Gemini, ChatGPT)
            const selection = window.getSelection();
            const range = document.createRange();
            range.selectNodeContents(targetElement);
            selection.removeAllRanges();
            selection.addRange(range);
            document.execCommand('insertText', false, finalTxt);
        }
    }

    // Global listener for the shortcut key
    document.addEventListener('keydown', function(e) {
        // Activates when pressing Alt + U
        if (e.altKey && e.key.toLowerCase() === 'u') {
            e.preventDefault();
            
            const activeInput = document.activeElement;
            if (!activeInput) return;

            // Prompt the user for input
            const userInput = prompt("Type your text here (It will be automatically uwuified):");
            if (userInput !== null && userInput.trim() !== "") {
                const uwuText = uwuify(userInput);
                forceInsert(activeInput, uwuText);
            }
        }
    }, true);
})();