Laitis Browser Extension

Laitis Browser Extension allows Laitis to control websites using your voice

Τι είναι το Laitis Browser Extension;

Το Laitis Browser Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://laitis.ru, και η κύρια λειτουργία του είναι "Laitis Browser Extension allows Laitis to control websites using your voice".

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

screenshot
screenshot
screenshot

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

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

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

                        Laitis Browser extension allows Laitis to control websites using your voice.
Requires installation of Laitis app from laitis.ru website.

You can create voice commands with JS to control specific websites, or use predefined commands for most popular websites and global commands to browse hyperlinks.
Also you can dictate text into text fields, open/close tabs in chrome, open small browser tabs with handy info from selected websites.

Laitis contains voice commands to control chromium web browser, Youtube website and many more apps and websites.

Voice commands examples: "Open Chrome", "Open YouTube", "Select video", "Next", "Open video", "Full screen", "pause video".                    

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

Όνομα Laitis Browser Extension Laitis Browser Extension
ID kkfnfemdemphdadfolkmoimpeibeiadc
Επίσημο URL https://chromewebstore.google.com/detail/laitis-browser-extension/kkfnfemdemphdadfolkmoimpeibeiadc
Περιγραφή Laitis Browser Extension allows Laitis to control websites using your voice
Μέγεθος Αρχείου 14.7 KB
Αριθμός Εγκαταστάσεων 10,000
Τρέχουσα Έκδοση 4.1
Τελευταία Ενημέρωση 2020-06-26
Ημερομηνία Δημοσίευσης 2020-06-25
Αξιολόγηση 4.81/5 Συνολικά 37 Αξιολογήσεις
Προγραμματιστής https://laitis.ru
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://laitis.ru
Διεύθυνση URL της Σελίδας Βοήθειας https://vk.com/laitisgroup
URL της Σελίδας Πολιτικής Απορρήτου https://laitis.ru/en/legal
Υποστηριζόμενες Γλώσσες en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "short_name": "Laitis",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "version": "4.1",
    "icons": {
        "128": "icon.png"
    },
    "homepage_url": "https:\/\/laitis.ru",
    "author": "Sergey Mikolaitis",
    "permissions": [
        "tabs",
        "activeTab",
        "contextMenus",
        "system.display",
        "nativeMessaging",
        "background"
    ],
    "browser_action": {
        "default_title": "Laitis",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}