oViSwitch
Focus your oVice tab with one click.
Was ist oViSwitch?
oViSwitch ist eine Chrome-Erweiterung, die von punkshiraishi entwickelt wurde, und ihr Hauptmerkmal ist "Focus your oVice tab with one click.".
Erweiterungsscreenshots
oViSwitch-Erweiterungs-CRX-Datei herunterladen
Laden Sie oViSwitch-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
# 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 タブを移動する機能を実装。
Grundlegende Informationen zur Erweiterung
Name | oViSwitch |
ID | ldohahnbhclmpimkninjoellgemepljl |
Offizielle URL | https://chromewebstore.google.com/detail/oviswitch/ldohahnbhclmpimkninjoellgemepljl |
Beschreibung | Focus your oVice tab with one click. |
Dateigröße | 69.32 KB |
Installationsanzahl | 97 |
Aktuelle Version | 2.2.0 |
Letztes Update | 2023-05-15 |
Veröffentlichungsdatum | 2022-08-01 |
Entwickler | punkshiraishi |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/punkshiraishi/oviswitch |
Unterstützte Sprachen | 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": [ " |