uwu-chan

i will make a webbusite become uwu

什麼是uwu-chan?

uwu-chan是由bwinsley開發的Chrome擴展程式,該擴展的主要功能是“i will make a webbusite become uwu”。

擴展截圖

screenshot
screenshot

下載uwu-chan擴展crx文件

下載uwu-chan擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 uwu-chan uwu-chan
ID loncheibbgjnpbaojeaacejncibiddgn
官方網址 https://chromewebstore.google.com/detail/uwu-chan/loncheibbgjnpbaojeaacejncibiddgn
簡介 i will make a webbusite become uwu
檔案大小 182 KB
安裝次數 1,172
目前版本 1.2.0
更新時間 2022-04-04
上架時間 2021-10-28
評分 4.93/5 共 14 次評分
開發者 bwinsley
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://docs.google.com/document/d/1BXfzeiYJh6r_6VnHd0gcY5F4fXzcomjK27ArSkppAT4/edit?usp=sharing
支援的語言 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"
}