uwu-chan
i will make a webbusite become uwu
uwu-chan क्या है?
uwu-chan bwinsley द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "i will make a webbusite become uwu"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में uwu-chan एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" } |