uwu-chan

i will make a webbusite become uwu

¿Qué es uwu-chan?

uwu-chan es una extensión de Chrome desarrollada por bwinsley, y su función principal es "i will make a webbusite become uwu".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión uwu-chan

Descarga archivos de extensión uwu-chan en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        This extension changes the text on all websites that you visit to make them uwu-style. The letters R,O and U become changed to various w, uwu, ow, and owo!

It will also change the YouTube logo into uwuTube!

Users can easily turn this feature on and off and also change the level of uwu-ness that they want

The extension makes browsing the internet much more fun and entertaining!

Please email [email protected] if you have any suggestions or features you would like added.
The code for this extension is public! You can check out the github repository for this extension at https://github.com/bwinsley/uwu-chan                    

Información Básica de la Extensión

Nombre uwu-chan uwu-chan
ID loncheibbgjnpbaojeaacejncibiddgn
URL Oficial https://chromewebstore.google.com/detail/uwu-chan/loncheibbgjnpbaojeaacejncibiddgn
Descripción i will make a webbusite become uwu
Tamaño del Archivo 182 KB
Cantidad de Instalaciones 1,172
Versión Actual 1.2.0
Última Actualización 2022-04-04
Fecha de Publicación 2021-10-28
Calificación 4.93/5 Total de 14 Calificaciones
Desarrollador bwinsley
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://docs.google.com/document/d/1BXfzeiYJh6r_6VnHd0gcY5F4fXzcomjK27ArSkppAT4/edit?usp=sharing
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "uwu-chan",
    "version": "1.2.0",
    "description": "i will make a webbusite become uwu",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/img\/icon16.png",
            "32": "\/img\/icon32.png",
            "64": "\/img\/icon64.png",
            "128": "\/img\/icon128.png"
        }
    },
    "background": {
        "service_worker": ".\/javascript\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/javascript\/uwu.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                ".\/javascript\/uwutube.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "\/img\/icon16.png",
        "32": "\/img\/icon32.png",
        "64": "\/img\/icon64.png",
        "128": "\/img\/icon128.png"
    },
    "options_page": "options.html"
}