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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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