Serenade for Chrome

Navigate the web with voice.

Serenade for Chrome là gì?

Serenade for Chrome là một tiện ích mở rộng Chrome được phát triển bởi https://serenade.ai, và tính năng chính của nó là "Navigate the web with voice.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Serenade for Chrome

Tải xuống các tệp mở rộng Serenade for Chrome dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        With Serenade, you can write code by speaking rather than typing. With the Serenade extension for Chrome, you can extend your productivity to the browser. Simply speak a command, and Serenade will navigate the web and write text for you, with no mouse or keyboard required.

This extension requires the Serenade native app, which is freely available for Windows, macOS, and Linux. Learn more at https://serenade.ai.

Manage your tabs with commands like:
- "new tab"
- "close tab"
- "next | previous tab"
- "first | second ... tab"
- "duplicate tab"

Navigate with commands like:
- "forward"
- "back"
- "reload"
- "scroll left | up | right | down"
- "scroll to ..."
- "go to ..."
- "show links | inputs"
- "click ..."

Write text in editable areas on pages, with commands like:
- "type ..."
- "line one | two ..."
- "delete ..."
- "copy | cut ..."
- "paste"                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Serenade for Chrome Serenade for Chrome
ID bgfbijeikimjmdjldemlegooghdjinmj
URL Chính Thức https://chromewebstore.google.com/detail/serenade-for-chrome/bgfbijeikimjmdjldemlegooghdjinmj
Mô tả Navigate the web with voice.
Kích Thước Tệp 95.49 KB
Số Lần Cài Đặt 2,870
Phiên Bản Hiện Tại 1.4.3
Cập Nhật Lần Cuối 2021-09-02
Ngày Phát Hành 2020-06-30
Đánh Giá 4.63/5 Tổng số 8 Đánh Giá
Nhà Phát Triển https://serenade.ai
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://serenade.ai/
URL Trang Trợ Giúp https://serenade.ai/docs/chrome/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Serenade for Chrome",
    "version": "1.4.3",
    "description": "Navigate the web with voice.",
    "icons": {
        "16": "img\/icon_default\/16x16.png",
        "48": "img\/icon_default\/48x48.png",
        "128": "img\/icon_default\/128x128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "img\/icon_default\/16x16.png",
            "32": "img\/icon_default\/32x32.png",
            "48": "img\/icon_default\/48x48.png",
            "128": "img\/icon_default\/128x128.png"
        },
        "default_title": "Serenade for Chrome",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "build\/extension.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "build\/content.js",
                "build\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "build\/page.js"
    ],
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ]
}