You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ウェブ通知の最も顕著な用途の一つが、ウェブベースのメールや IRC アプリケーションにおいて、新しいメッセージを受信したときに、ユーザーがほかのアプリケーションで何かをしていても通知をする必要がある場合です。これには数多くの事例が存在し、例えば Slack などがあります。
引用: 通知 API の使用 - Web API | MDN
Remove the ability to call Notification.requestPermission() from non-main frames.
This change will align the requirements for notification permission with that of push notifications, easing friction for developers. It allows us to unify notification and push permissions.
引用: Remove Usage of Notifications from iFrames - Chrome Platform Status
※ この記事は、私が2022/12/20に書いたメモを転記したものです。
3行で
<iframe>
に Web 版 Slack を表示するため,通知が来ると多重で音が鳴ってしまう<iframe>
の通知許可はメインフレームの通知許可から行うべきであることも分かり,多重で音が鳴っている挙動が適切な挙動ということになってしまったSlackDeck とは?
Slack のチャンネルを横に並べられる Chrome 拡張機能
https://chrome.google.com/webstore/detail/slackdeck/cocnkjpcbmoopfpmogblnjpjdfcaohod
何が問題だったか?
SlackDeck は,メインの Slack を表示する
<body>
とカラムとして Slack を表示する<iframe>
で構成されている.図にすると次の通り:この状態で Slack に通知が来ると,
<body>
と全ての<iframe>
で通知音が鳴ってしまい,多重で通知音が鳴ってしまう.これが原因で SlackDeck を Chrome から削除してしまうユーザもいたため,今回,修正を試みた次第.
調べて分かったこと
<iframe>
から通知許可を求めるメソッドNotification.requestPermission()
は Chrome から非推奨と言われている以上より,
<body>
で表示している Slack の通知を許可したならば<iframe>
で表示している Slack も許可されているのが適切.つまり,多重で通知音が鳴っている挙動が適切となる.どうする?
どうしよう…
The text was updated successfully, but these errors were encountered: