DogeCam

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

Qu'est-ce que DogeCam ?

DogeCam est une extension Chrome développée par Chirag Soni, et sa fonction principale est "A chrome extension to make your video calls Doge-y!".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension DogeCam

Téléchargez les fichiers d'extension DogeCam au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom DogeCam DogeCam
ID cpkhjefkaaieodnmbphjhjcecoainblp
URL Officiel https://chromewebstore.google.com/detail/dogecam/cpkhjefkaaieodnmbphjhjcecoainblp
Description A chrome extension to make your video calls Doge-y!
Taille du Fichier 657 KB
Nombre d'Installations 154
Version Actuelle 0.3.0
Dernière Mise à Jour 2020-09-17
Date de Publication 2020-07-16
Évaluation 4.25/5 Total 4 Évaluations
Développeur Chirag Soni
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Cruzo007/DogeCam
URL de la Page d'Aide https://github.com/Cruzo007/DogeCam
Langues Prises en Charge 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"
    ]
}