DogeCam

A chrome extension to make your video calls Doge-y!

DogeCam क्या है?

DogeCam Chirag Soni द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension to make your video calls Doge-y!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में DogeCam एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    ]
}