oViSwitch

Focus your oVice tab with one click.

Apa itu oViSwitch?

oViSwitch adalah ekstensi Chrome yang dikembangkan oleh punkshiraishi, dan fitur utamanya adalah "Focus your oVice tab with one click.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi oViSwitch

Unduh file ekstensi oViSwitch dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        # oViSwitch とは

コミュニケーションツール [oVice](https://ovice.in/) を便利に使うための非公式の chrome 拡張です。

# 使い方
- 拡張のアイコンをクリックすると oVice を開いているタブに移動します。
- タブを開いていない場合は、指定された oVice ワークスペースを開きます。
- oVice を開いた直後の「クリックまたは Enter キーで開始」表示を拡張のアイコンをクリックで消せます。
- oVice を開いた状態でアイコンをクリックすると、マイクの ON/OFF を切り替えます。
- `Alt + o` でもアイコンクリックと同様の動作をします。
- `Alt + p` で oVice に移動する直前のタブに戻ります。

# 便利なポイント
作業中に oVice で誰かに話しかけられた時に、大量のタブの中から oVice を探す手間が不要になります。
そのままマイクの ON/OFF も切り替えられるので、2 回クリックすればすぐに会話をスタートできます。

# 更新履歴
- [v2.2.0] [2023/05/15] ロゴを刷新。「クリックまたは Enter キーで開始」画面のクリックに対応。
- [v2.1.0] [2022/09/12] oVice に移動する直前のタブに戻る機能を追加。
- [v2.0.2] [2022/08/24] 起動できないバグを修正。
- [v2.0.1] [2022/08/21] 指定の oVice ワークスペースを開く機能を追加。
- [v2.0.0] [2022/08/11] アイコンをリニューアル。マイク ON/OFF とショートカット機能を追加。
- [v1.0.0] [2022/08/01] 初回リリース。クリックで oVice タブを移動する機能を実装。                    

Informasi Dasar Ekstensi

Nama oViSwitch oViSwitch
ID ldohahnbhclmpimkninjoellgemepljl
URL Resmi https://chromewebstore.google.com/detail/oviswitch/ldohahnbhclmpimkninjoellgemepljl
Deskripsi Focus your oVice tab with one click.
Ukuran File 69.32 KB
Jumlah Instalasi 97
Versi Saat Ini 2.2.0
Terakhir Diperbarui 2023-05-15
Tanggal Publikasi 2022-08-01
Pengembang punkshiraishi
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/punkshiraishi/oviswitch
Bahasa yang Didukung ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "oViSwitch",
    "version": "2.2.0",
    "description": "Focus your oVice tab with one click.",
    "action": {
        "default_icon": ".\/assets\/black512.png"
    },
    "options_ui": {
        "page": ".\/dist\/options\/index.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": ".\/dist\/background\/index.mjs"
    },
    "icons": {
        "16": ".\/assets\/black32.png",
        "32": ".\/assets\/black32.png",
        "48": ".\/assets\/black512.png",
        "128": ".\/assets\/black512.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.ovice.in\/*"
            ],
            "js": [
                ".\/dist\/contentScripts\/index.global.js"
            ]
        }
    ],
    "commands": {
        "execute_main": {
            "description": "Jump to ovice or toggle mute state.",
            "suggested_key": {
                "default": "Alt+O",
                "mac": "Alt+O"
            }
        },
        "back_to_previous": {
            "description": "Back to previous tab.",
            "suggested_key": {
                "default": "Alt+P",
                "mac": "Alt+P"
            }
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/contentScripts\/style.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}