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ファイルをダウンロード

Serenade for Chrome拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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",
        "*:\/\/*\/*"
    ]
}