uwu-chan

i will make a webbusite become uwu

O que é uwu-chan?

uwu-chan é uma extensão do Chrome desenvolvida por bwinsley, e sua principal característica é "i will make a webbusite become uwu".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão uwu-chan

Baixe arquivos de extensão uwu-chan no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome uwu-chan uwu-chan
ID loncheibbgjnpbaojeaacejncibiddgn
URL Oficial https://chromewebstore.google.com/detail/uwu-chan/loncheibbgjnpbaojeaacejncibiddgn
Descrição i will make a webbusite become uwu
Tamanho do Arquivo 182 KB
Contagem de Instalações 1,172
Versão Atual 1.2.0
Última Atualização 2022-04-04
Data de Publicação 2021-10-28
Classificação 4.93/5 Total de 14 Avaliações
Desenvolvedor bwinsley
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://docs.google.com/document/d/1BXfzeiYJh6r_6VnHd0gcY5F4fXzcomjK27ArSkppAT4/edit?usp=sharing
Idiomas Suportados 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"
}