Sloth

Voice control of the browser

Τι είναι το Sloth;

Το Sloth είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον hisloth1, και η κύρια λειτουργία του είναι "Voice control of the browser".

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

screenshot
screenshot

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

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

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

                        Sloth - voice control of the Google Chrome browser

This is an extension for people with disabilities and just for the convenience of controlling your computer with your voice. 

Sloth - allows you to use voice control of the Google Chrome browser. There is an opportunity to open Internet resources, Google search, opening links, scrolling through pages of sites and control browser tabs using voice control. 

The extension has a fairly easy interface. Soon the control will be implemented in more than 15 languages, including the English version. 

To work it is desirable to have a good microphone or laptop with a built-in microphone, as well as a room without noise. 

Try again, if you do not succeed at the first time. You will need some time to practice and memorize voice commands. You'll soon find that it's easier than it looks at first glance.

Have a great experience!                    

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

Όνομα Sloth Sloth
ID dlapefcaghmdilcimbomehinboaddfhf
Επίσημο URL https://chromewebstore.google.com/detail/sloth/dlapefcaghmdilcimbomehinboaddfhf
Περιγραφή Voice control of the browser
Μέγεθος Αρχείου 194 KB
Αριθμός Εγκαταστάσεων 14
Τρέχουσα Έκδοση 0.8.2
Τελευταία Ενημέρωση 2021-07-08
Ημερομηνία Δημοσίευσης 2021-07-08
Προγραμματιστής hisloth1
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://hisloth.com
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "19.png",
            "48": "48.png"
        },
        "default_title": "Sloth"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "jquery.js",
                "contentscript.js"
            ],
            "css": [
                "css.css"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": "script-src 'self'; connect-src *; img-src *; frame-src *; object-src 'self'",
    "description": "Voice control of the browser",
    "icons": {
        "64": "64.png",
        "48": "48.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "43",
    "name": "Sloth",
    "options_page": "options.html",
    "permissions": [
        "storage",
        "unlimitedStorage",
        "tabs",
        "bookmarks",
        "history",
        "pageCapture",
        "clipboardWrite",
        "downloads",
        "sessions",
        "management",
        ""
    ],
    "version": "0.8.2",
    "web_accessible_resources": [
        "iframe.html"
    ]
}