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