Serenade for Chrome

Navigate the web with voice.

Serenade for Chrome란 무엇입니까?

Serenade for Chrome은(는) https://serenade.ai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Navigate the web with voice."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Serenade for Chrome 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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"                    

확장 프로그램 기본 정보

이름 Serenade for Chrome Serenade for Chrome
ID bgfbijeikimjmdjldemlegooghdjinmj
공식 URL https://chromewebstore.google.com/detail/serenade-for-chrome/bgfbijeikimjmdjldemlegooghdjinmj
설명 Navigate the web with voice.
파일 크기 95.49 KB
설치 횟수 2,870
현재 버전 1.4.3
최근 업데이트 2021-09-02
출시 날짜 2020-06-30
평점 4.63/5 총 8 개의 평점
개발자 https://serenade.ai
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://serenade.ai/
도움말 페이지 URL https://serenade.ai/docs/chrome/
지원되는 언어 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",
        "*:\/\/*\/*"
    ]
}