DogeCam
A chrome extension to make your video calls Doge-y!
DogeCamคืออะไร?
DogeCam เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Chirag Soni และคุณลักษณะหลักของมันคือ "A chrome extension to make your video calls Doge-y!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DogeCam
ดาวน์โหลดไฟล์ส่วนขยาย DogeCam ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |