uwu-chan
i will make a webbusite become uwu
uwu-chan란 무엇입니까?
uwu-chan은(는) bwinsley에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "i will make a webbusite become uwu"입니다.
확장 프로그램 스크린샷
uwu-chan 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } |