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!”。

扩展截图

screenshot
screenshot

下载DogeCam扩展crx文件

下载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 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"
    ]
}