スキップしてメイン コンテンツに移動

Google Meet アプリ(ページをアプリとしてインストール)を起動したときに毎回同じ Meeting ID で起動するようにする

Google Meet のアプリをインストールすると、デスクトップにリンク先が「"C:\Program Files\Google\Chrome\Application\chrome_proxy.exe" --profile-directory=Default --app-id=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx」のショートカットが作成されるが、これをクリックするとブラウザで https://meet.google.com/landing を開いたのと同じ画面が表示される。
毎回同じ ID でミーティングを開催する運用をしている場合、ショートカットをクリックして Meet.app を起動した場合でもいつもと同じミーティング ID の画面が表示されるようにしたい。
要するに、毎回 xxx-xxxx-xxx な ID でミーティングを開催しており、https://meet.google.com/xxx-xxxx-xxx をブックマークしている運用の場合に、ショートカットから Meet.app を開いた場合でも https://meet.google.com/xxx-xxxx-xxx が開くようにしたい。

ショートカットに以下のように --app-launch-url-for-shortcuts-menu-item を追加すれば実現できる。

"C:\Program Files\Google\Chrome\Application\chrome_proxy.exe" --profile-directory=Default --app-id=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx --app-launch-url-for-shortcuts-menu-item="https://meet.google.com/xxx-xxxx-xxx"

コメント