oViSwitch
Focus your oVice tab with one click.
What is oViSwitch?
oViSwitch is a Chrome extension developed by punkshiraishi, and its main feature is "Focus your oVice tab with one click.".
Extension Screenshots
Download oViSwitch Extension CRX File
Download oViSwitch extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
# 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 タブを移動する機能を実装。
Extension Basic Information
Name | oViSwitch |
ID | ldohahnbhclmpimkninjoellgemepljl |
Official URL | https://chromewebstore.google.com/detail/oviswitch/ldohahnbhclmpimkninjoellgemepljl |
Description | Focus your oVice tab with one click. |
File Size | 69.32 KB |
Installation Count | 97 |
Current Version | 2.2.0 |
Last Updated | 2023-05-15 |
Publish Date | 2022-08-01 |
Developer | punkshiraishi |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/punkshiraishi/oviswitch |
Supported Languages | 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": [ " |