Laitis Browser Extension

Laitis Browser Extension allows Laitis to control websites using your voice

什么是Laitis Browser Extension?

Laitis Browser Extension是由https://laitis.ru开发的Chrome扩展程序,该扩展的主要功能是“Laitis Browser Extension allows Laitis to control websites using your voice”。

扩展截图

screenshot
screenshot
screenshot

下载Laitis Browser Extension扩展crx文件

下载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"
            ]
        }
    ]
}