Chatroulette Custom Selfie
Set any image as your selfie on Chatroulette!
Chatroulette Custom Selfie란 무엇입니까?
Chatroulette Custom Selfie은(는) kronsuki에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Set any image as your selfie on Chatroulette!"입니다.
확장 프로그램 스크린샷
Chatroulette Custom Selfie 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Tired of looking like an exhausted goblin before taking a selfie on Chatroulette? This extension allows you to use ANY image as your selfie. You can even use a moving gif! So go out, take a nice picture or video on your phone and upload it to Chatroulette! -----------------------------> + Usage: > You will need to set a selfie before using this. Doesn't matter if it's bad. The extension just replaces that selfie. > The extension also flips your thumbnail and resizes it. This is how others will actually see you. As a 1x1 non-inverted picture. > If you're using a gif, make sure its very less in size. Preferably less than 5 MB. Reduce it's frames and compress it before uploading it. Everyone else can see your selfie move after that. Make sure your face is visible! -----------------------------> + Github: The code's open source! Check it out on my github! https://github.com/SuppliedOrange/Chatroulette-Custom-Selfie/ -----------------------------> + Note: I do not suggest using NSFW images, impersonating people, hiding your face etc. I am not responsible if you get banned on Chatroulette for it. Please read Chatroulette's rules before using this.
확장 프로그램 기본 정보
이름 | Chatroulette Custom Selfie |
ID | diioniigmlfehfeoojmgonobbmkndffe |
공식 URL | https://chromewebstore.google.com/detail/chatroulette-custom-selfi/diioniigmlfehfeoojmgonobbmkndffe |
설명 | Set any image as your selfie on Chatroulette! |
파일 크기 | 170 KB |
설치 횟수 | 54 |
현재 버전 | 1.1.2 |
최근 업데이트 | 2023-12-16 |
출시 날짜 | 2023-05-22 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | kronsuki |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/SuppliedOrange/Chatroulette-Custom-Selfie |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chatroulette Custom Selfie", "version": "1.1.2", "description": "Set any image as your selfie on Chatroulette!", "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/chatroulette.com\/app\/" ], "js": [ ".\/js\/fixcanvas.js" ] } ], "permissions": [ "tabs", "scripting", "activeTab" ], "host_permissions": [ "https:\/\/chatroulette.com\/*" ], "icons": { "128": ".\/assets\/images\/icon.png" }, "background": { "service_worker": "background.js" } } |