Sync raise a hand

This is a Chrome extension that allows you to control the Raise button with real hand movements

Τι είναι το Sync raise a hand;

Το Sync raise a hand είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον RyoKawamata, και η κύρια λειτουργία του είναι "This is a Chrome extension that allows you to control the Raise button with real hand movements".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Sync raise a hand

Λήψη αρχείων επέκτασης Sync raise a hand σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        ## Feature

- ✋ When you raise your hand in real life, the meet's raise button will also be pressed.
- 🔐 All processing is done within the browser. No image data will be sent to the any server.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Sync raise a hand Sync raise a hand
ID aacolcbidcmmhkilmmgfebmcghpkdngg
Επίσημο URL https://chromewebstore.google.com/detail/sync-raise-a-hand/aacolcbidcmmhkilmmgfebmcghpkdngg
Περιγραφή This is a Chrome extension that allows you to control the Raise button with real hand movements
Μέγεθος Αρχείου 268 KB
Αριθμός Εγκαταστάσεων 33
Τρέχουσα Έκδοση 0.0.1
Τελευταία Ενημέρωση 2021-08-24
Ημερομηνία Δημοσίευσης 2021-08-23
Προγραμματιστής RyoKawamata
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/kawamataryo/sync-raise-a-hand
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sync raise a hand",
    "version": "0.0.1",
    "description": "This is a Chrome extension that allows you to control the Raise button with real hand movements",
    "browser_action": {
        "default_icon": ".\/assets\/icon-48.png",
        "default_popup": ".\/dist\/popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/meet.google.com\/*",
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                ".\/dist\/contentScripts\/index.global.js"
            ],
            "css": [
                ".\/dist\/contentScripts\/index.global.css"
            ]
        }
    ],
    "icons": {
        "19": ".\/assets\/icon-19.png",
        "48": ".\/assets\/icon-48.png",
        "128": ".\/assets\/icon.png"
    },
    "permissions": [
        "tabs",
        "activeTab"
    ]
}