Laitis Browser Extension

Laitis Browser Extension allows Laitis to control websites using your voice

Laitis Browser Extension là gì?

Laitis Browser Extension là một tiện ích mở rộng Chrome được phát triển bởi https://laitis.ru, và tính năng chính của nó là "Laitis Browser Extension allows Laitis to control websites using your voice".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Laitis Browser Extension

Tải xuống các tệp mở rộng Laitis Browser Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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".                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Laitis Browser Extension Laitis Browser Extension
ID kkfnfemdemphdadfolkmoimpeibeiadc
URL Chính Thức https://chromewebstore.google.com/detail/laitis-browser-extension/kkfnfemdemphdadfolkmoimpeibeiadc
Mô tả Laitis Browser Extension allows Laitis to control websites using your voice
Kích Thước Tệp 14.7 KB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 4.1
Cập Nhật Lần Cuối 2020-06-26
Ngày Phát Hành 2020-06-25
Đánh Giá 4.81/5 Tổng số 37 Đánh Giá
Nhà Phát Triển https://laitis.ru
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://laitis.ru
URL Trang Trợ Giúp https://vk.com/laitisgroup
URL Trang Chính Sách Bảo Mật https://laitis.ru/en/legal
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}