PoseKey

A chrome extension that enables your poses to control browsers with a webcam

Τι είναι το PoseKey;

Το PoseKey είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον swjomojomo, και η κύρια λειτουργία του είναι "A chrome extension that enables your poses to control browsers with a webcam".

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

Λήψη αρχείου CRX της επέκτασης PoseKey

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

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

                        PoseKey

## Due to chrome update, currently custom models are not usable. this issue will be fixed soon.

This program allows you to control the browser with your motions, or poses WITHOUT any motion detecting Hardware!!

The magic behind this program is the AI models implemented with Tensorflow.js.
There are 6 default poses that are pre-defined. However, users can train a custom model in the options page.

Manuals
1. How to activate:
There is a power button on the popup page.(left click on the icon)
To run or stop the program. click the power button. The icon will change if it worked properly.

2. SignIn/SighOut (Login/Logout)
This program requires sign in(log in) from google. This process is needed to enable training for custom poses. If you want to sign out(log out), go to the third tab on popup page. 

3. Mirror tab (middle tab on popup page)
This tab will not be active until camera access is allowed in the options page.
There will be a redirect link to options page; however, you can directly go to options page by pressing right click on the icon, and click 'option'.

4.Interface box
The interface box could disturb your web browsing experience. You can change location or hide the box by setting tab on popup page.

Requirements:
1. connected camera (including laptop cameras)
2. a google email.

FAQ:
Q: This program slows down too much.
A: You can increase performance by lowering numbers on setting tab. (popup page)

Q: The video commands are not responding.
A: For now, the video commands are only supported for "YouTube".

Copyrights:
All Icons are made by Freepik from www.flaticon.com is licensed by CC 3.0 BY                    

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

Όνομα PoseKey PoseKey
ID bfbmmjciedgjdalbdpeikdopmaompkeh
Επίσημο URL https://chromewebstore.google.com/detail/posekey/bfbmmjciedgjdalbdpeikdopmaompkeh
Περιγραφή A chrome extension that enables your poses to control browsers with a webcam
Μέγεθος Αρχείου 6.72 MB
Αριθμός Εγκαταστάσεων 14
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2019-06-07
Ημερομηνία Δημοσίευσης 2019-06-03
Αξιολόγηση 3.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής swjomojomo
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PoseKey",
    "description": "A chrome extension that enables your poses to control browsers with a webcam",
    "version": "1.0",
    "permissions": [
        "activeTab",
        "tabs",
        "identity",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "man-celebrating1.png",
        "default_title": "Posenet Chrome Extension",
        "default_popup": "popup\/index.html"
    },
    "web_accessible_resources": [
        "option\/index.html"
    ],
    "options_page": "option\/index.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/apis.google.com; object-src 'self'"
}