Hey Buddy - Chrome Voice Assistant

Speech recognition and voice control for Chrome

Hey Buddy - Chrome Voice Assistant란 무엇입니까?

Hey Buddy - Chrome Voice Assistant은(는) http://bewisse.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Speech recognition and voice control for Chrome"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Hey Buddy - Chrome Voice Assistant 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Use voice to control your Chrome browser

- Command your day: Get the latest news, weather, directions, and groceries, and more.
- Control Chrome: Browser Tabs, Bookmarks, Navigation, Page Control, take over your chrome browser by calling to your favorite Voice Assistant.
- Designed with your privacy in mind: Our unique hotword detection feature can be turned off, where "Hey Buddy" will not listen to what you’re saying until it’s being clicked. Never tracking your speech or "private" activities.
- Voice control your music and videos: Stream songs and videos through Spotify, Youtube, iTunes just by saying "Hey Buddy"

What is new in 2.1.3:
- Critical bug fixes

What is new in 2.1.2:
- Mute tabs when Hey Buddy is triggered.

What is new in 2.1.1:
- Support for "best result" (also "top result" / "first result" / "second result", etc.) queries on Google search and YouTube.
- Suggest the most recent query for easier repetition
- Fix a bug where Hey Buddy continues to react to queries after stopping

What is new in 2.1.0:
- Enable query cancellation by saying 'no' or 'cancel' at the end.
- Add 'side by side' command to align windows side by side.
- Add an option to stop listening after each query.
- Move supported commands page out to a separate web page.

What is new in 2.0.1:
- Minor optimizations

What is new in 2.0.0:
- Complete UI redesign
- Better instant feedback
- Better intent recognition
- More guidance on initial setup
- Option to enable TTS support on search results page
- Less noisy notifications

What is new in 1.1.2:
- Fix go to query

What is new in 1.1.1:
- Custom hotword support

What is new in 1.1.0:
- Stop listening after 2 seconds timeout.

What is new in 1.0.9:
- Add ability to show/hide personalized search suggestions.
- Add support for searching on site (e.g.,  on Bing, search for  on Walmart, etc.)

What is new in 1.0.8:
- Show Google suggestions instead of most recent query.
- Allow deletion of Google search suggestion.

What is new in 1.0.7:
- Say 'stay open' to keep Chrome Voice Assistant active.

What is new in 1.0.6:
- Voice input mode - use voice dictation to compose email, take notes, fill out form, etc.

What is new in 1.0.5:
- Bookmark management (bookmark / remove bookmark)
- Navigation (go back / go forward)
- Page control (zoom in / zoom out / page up / page down)

Official site: https://bewisse.com/heybuddy/
Privacy policy: https://bewisse.com/heybuddy/privacy/
Source code: https://github.com/bewisse/heybuddy
Donation: https://www.paypal.me/hao1300                    

확장 프로그램 기본 정보

이름 Hey Buddy - Chrome Voice Assistant Hey Buddy - Chrome Voice Assistant
ID aollofiafbblhopkofbfmlmbhbdcblem
공식 URL https://chrome.google.com/webstore/detail/hey-buddy-chrome-voice-as/aollofiafbblhopkofbfmlmbhbdcblem
설명 Speech recognition and voice control for Chrome
파일 크기 1.94 MB
설치 횟수 2,000
현재 버전 2.1.3
최근 업데이트 2021-07-03
출시 날짜 2020-06-07
평점 4.05/5 총 66 개의 평점
개발자 http://bewisse.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://heybuddy.bewisse.com/
도움말 페이지 URL https://bewisse.com/heybuddy/commands/
개인정보 보호 정책 페이지 URL https://modheader.com/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Speech recognition and voice control for Chrome",
    "version": "2.1.3",
    "name": "Hey Buddy - Chrome Voice Assistant",
    "short_name": "Hey Buddy",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "img\/icon_128_bw.png",
        "default_title": "Hey Buddy - Chrome Voice Assistant",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contents_iframe.bundle.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+H",
                "mac": "Command+Shift+H",
                "chromeos": "Ctrl+Shift+H",
                "linux": "Ctrl+Shift+H"
            }
        }
    },
    "incognito": "spanning",
    "permissions": [
        "",
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "web_accessible_resources": [
        "notification_ui.html",
        "img\/*"
    ],
    "optional_permissions": [
        "bookmarks"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}