uwu-chan

i will make a webbusite become uwu

Τι είναι το uwu-chan;

Το uwu-chan είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον bwinsley, και η κύρια λειτουργία του είναι "i will make a webbusite become uwu".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης uwu-chan

Λήψη αρχείων επέκτασης 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
Επίσημο URL 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"
}