Voice Actions for Chrome

Control your browser just by talking to it.

Voice Actions for Chromeคืออะไร?

Voice Actions for Chrome เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Zachary Yaro และคุณลักษณะหลักของมันคือ "Control your browser just by talking to it."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Voice Actions for Chrome

ดาวน์โหลดไฟล์ส่วนขยาย Voice Actions for Chrome ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Voice Actions for Chrome lets you control your Chrome/Chromium browser with your voice.  It is similar to (but not affiliated with) voice actions and voice search apps available for Android and iOS, but it is the first such app available for Chrome.

Features include:
• Search the web with spoken queries.
• Open web pages and Chrome apps just by saying their names.
• Get maps or directions by saying the name of a location or destination.
• Search for music by saying the name of an artist, album, or song.
• No need to search through piles of tabs—just speak the title and Voice Actions will find it.
• Activate hands-free—just say “OK Chrome”✴️

Permissions:
• Needs access to your tabs for the “switch to ~” command
• Needs access to your installed apps for the “launch ~” command
  - You must still enable Chrome app launching in options before the extension will search your apps
• Needs access to your top sites for the “I'm feeling lucky” command
**None of your browsing data is stored by the extension**

Follow for updates:
• facebook.com/ChromeVoiceActions
• twitter.com/ChromeVoice

Voice Actions for Chrome was created by Zachary Yaro and is supported in part through donations on ko-fi.com/ZMYaro and patreon.com/ZMYaro.
More information is available at goo.gl/0YRdir.
The source code is available at github.com/ZMYaro/chrome-voice-actions.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Voice Actions for Chrome Voice Actions for Chrome
ID hhpjefokaphndbbidpehikcjhldaklje
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/voice-actions-for-chrome/hhpjefokaphndbbidpehikcjhldaklje
คำอธิบาย Control your browser just by talking to it.
ขนาดไฟล์ 570 KB
จำนวนการติดตั้ง 10,849
เวอร์ชันปัจจุบัน 5.1.1
อัปเดตครั้งล่าสุด 2023-05-30
วันที่เผยแพร่ 2020-02-06
คะแนน 4.24/5 รวมทั้งหมด 153 คะแนน
ผู้พัฒนา Zachary Yaro
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.facebook.com/ChromeVoiceActions
URL หน้าช่วยเหลือ https://rizzoma.com/topic/8e02e150e54be4b40bea9e6e6f90a2b9/
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "minimum_chrome_version": "55",
    "name": "Voice Actions for Chrome",
    "description": "Control your browser just by talking to it.",
    "version": "5.1.1",
    "icons": {
        "48": "images\/logo\/icon_48.png",
        "128": "images\/logo\/icon_128.png"
    },
    "permissions": [
        "management",
        "storage",
        "tabs",
        "topSites"
    ],
    "background": {
        "scripts": [
            "scripts\/shared.js",
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/logo\/icon_16.png",
            "19": "images\/logo\/icon_19.png",
            "32": "images\/logo\/icon_32.png",
            "38": "images\/logo\/icon_38.png"
        },
        "default_title": "Voice Actions",
        "default_popup": "popup.html"
    },
    "options_page": "options_page.html",
    "options_ui": {
        "page": "options_embedded.html",
        "open_in_tab": false,
        "chrome_style": true
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+V",
                "mac": "Alt+V",
                "chromeos": "Alt+V",
                "linux": "Alt+V"
            }
        }
    }
}