DogeCam
A chrome extension to make your video calls Doge-y!
DogeCam란 무엇입니까?
DogeCam은(는) Chirag Soni에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension to make your video calls Doge-y!"입니다.
확장 프로그램 스크린샷
DogeCam 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Bored of standard Video call meetings? Here’s DogeCam to the rescue! • Tons of cool Video filters and the possibility to combine them together. • Want to be on the video but not have people see you? Just Blur yourself. • Maybe try the spooky “invert” filter. • Or better yet, show up as a pixelated version of yourself! • Perhaps even record a video of yourself and have that loop instead of being "live"! Make your video calls Doge-y today! The User can easily configure their Filter (Or Filter combination) by: |1| Clicking the extension’s icon. |2| Saving the desired settings. The settings can also be changed on the fly mid-call! Supported/Tested Apps: Meets || Hangouts || Zoom || Slack || Teams Should _ideally_ work with any page that requests Video. Notes: Teams currently does not support the Pixel/Blur background mode. The Pixel/Blur background mode is quite compute-intensive and as a result, may impact performance. If any mode/filters fail to work as intended try disabling video and waiting 5 seconds before re-enabling the video.
확장 프로그램 기본 정보
이름 | DogeCam |
ID | cpkhjefkaaieodnmbphjhjcecoainblp |
공식 URL | https://chromewebstore.google.com/detail/dogecam/cpkhjefkaaieodnmbphjhjcecoainblp |
설명 | A chrome extension to make your video calls Doge-y! |
파일 크기 | 657 KB |
설치 횟수 | 154 |
현재 버전 | 0.3.0 |
최근 업데이트 | 2020-09-17 |
출시 날짜 | 2020-07-16 |
평점 | 4.25/5 총 4 개의 평점 |
개발자 | Chirag Soni |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Cruzo007/DogeCam |
도움말 페이지 URL | https://github.com/Cruzo007/DogeCam |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DogeCam", "description": " A chrome extension to make your video calls Doge-y!", "version": "0.3.0", "icons": { "16": "\/img\/doge_icon_16.png", "48": "\/img\/doge_icon_48.png", "128": "\/img\/doge_icon_128.png" }, "browser_action": { "default_icon": "\/img\/doge_icon_128.png", "default_popup": "popupBeta.html" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "base.js" ], "run_at": "document_start" } ], "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "combined.js", "render_teams.js", "videos\/sample.mp4" ] } |