-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove Hangouts component #39660
Comments
Hangouts of course has been EOL'ed but Google Meet working great with a few tests I've done with the extension disabled. |
I went through the extension's permissions:
|
@ShivanKaul I can check that tomorrow (RE: Should we make a separate issue to track disabling component first? This issue can track removing it entirely. I created brave/brave-core#24583 and added some tests that I manually ran through. Let me know what you think! |
Yeah, that makes sense, like we discussed we don't need to block on disabling this in Nightly. |
I created #39664 and edited the PR description for brave/brave-core#24583 to fix that instead. |
Fixes brave/brave-browser#39664 Disabling will add the extension to a block list. This won't affect people who have toggled the setting - for example, someone who manually enabled or disabled. Google Meet seems to work great with this extension blocked. First step towards fixing brave/brave-browser#39660 Long term goal would be to remove the extension code: https://source.chromium.org/chromium/chromium/src/+/main:chrome/browser/resources/hangout_services/manifest_v3.json;l=24-30
Just some background here: In 2019, Brave enabled the Hangouts Services extension to allow users to use Google Hangouts and Google Meet in the Brave browser. This extension fixed some broken Hangouts/Meet functionality in Brave (specifically, screen sharing would not work on Google Hangouts/Meet without the extension). At the time, Chromium was cautious about giving all websites access to the standards-compliant screen sharing API because of security concerns, which is presumably why Google special-cased this ability for Google’s websites only. Having Google Meet/Hangouts work in Chrome but not Brave was a serious Web compatibility problem. Before enabling this extension by default, Brave made sure that we added a way for users to disable the Hangouts extension in brave://settings/extensions. We also proactively blocked automatic uploading of debugging information to Google’s servers, the same way we frequently modify Chromium to fix leaks and boost user privacy. However, we see now why this would have raised concerns among some users. In hindsight, a better approach would have been one similar to what we did with the Widevine extension: keep the extension off-by-default, and ask the user if they want to enable it on their first visit to a website with functionality that would be helped by the extension. Over the years, we received clear reports from users that Google Meet did not work properly without the Hangouts Services extension, which is why we kept it on by default (though we should have revisited this sooner.) With the widespread adoption of screen sharing Web APIs, it’s clear the extension is no longer needed. Google deprecated Hangouts, and Google Meet works fine for Brave users without the extension. We have now changed our settings panel to leave the Hangouts Services extension off by default, and are removing the extension completely with the work in this issue. |
Adding |
Verification `PASSED using
Note: Hangout is enabled by default Case 1: Upgrade, default -
|
step 4 | step 7 |
---|---|
![]() |
![]() |
Case 2: Upgrade, user-modified setting - PASSED
- installed and launched
1.67.123
(release
) - opened
brave://settings/extensions
- toggled
Hangouts
from its default ofdisabled
toenabled
- installed
1.69.122
- launched Brave (
Beta
) - opened
brave://settings/extensions
- verified
Hangouts
entry is no longer shown - opened brave://extensions-internals/
- confirmed
nkeimhogjdpnpccoofpliimaahmaaome
is no longer there - loaded
google.com
- opened the
Developer Tools
'Console
- pasted in the following and hit Enter:
chrome.runtime.sendMessage(
"nkeimhogjdpnpccoofpliimaahmaaome",
{ method: "cpu.getInfo" },
(response) => {
console.log(JSON.stringify(response, null, 2));
},
);
- confirmed an error shown in console and no information shown.
step 3a | step 3b | step 7 | step 9 | step 13 |
---|---|---|---|---|
![]() |
![]() |
![]() |
![]() |
![]() |
Case 3: New profile - PASSED
I see that the latest merge disabled it by default and this issue has been closed. Anyway my question is about a group policy I had set regarding the Google Hangouts extension. {
"WebRtcEventLogCollectionAllowed": false,
"WebRtcTextLogCollectionAllowed": false,
"ExtensionInstallBlocklist": [
"nkeimhogjdpnpccoofpliimaahmaaome"
]
} |
Upon further testing there is no way to lock the slider in Also many group policies are broken and dont carry over in Brave despite them being valid in For example these two do not work on Brave:
{
"EnableMediaRouter": false,
"ClearBrowsingDataOnExitList": [
"browsing_history",
"download_history",
"cookies_and_other_site_data",
"cached_images_and_files",
"password_signin",
"autofill",
"site_settings",
"hosted_app_data"
]
} |
Verification
Case 1: Upgrade, default -
|
step 4 | step 7 |
---|---|
![]() |
![]() |
Case 2: Upgrade, user-modified setting - PASSED
- installed and launched
1.68.128
- opened
brave://settings/extensions
- toggled
Hangouts
from its default ofdisabled
toenabled
- installed
1.69.128
- launched Brave (
Beta
) - opened
brave://settings/extensions
- verified
Hangouts
entry is no longer shown - opened brave://extensions-internals/
- confirmed
nkeimhogjdpnpccoofpliimaahmaaome
is no longer there - loaded
google.com
- opened the
Developer Tools
'Console
- pasted in the following and hit Enter:
chrome.runtime.sendMessage(
"nkeimhogjdpnpccoofpliimaahmaaome",
{ method: "cpu.getInfo" },
(response) => {
console.log(JSON.stringify(response, null, 2));
},
);
- confirmed an error shown in console and no information shown.
step 3a | step 3b | step 7 | step 9 | step 13 |
---|---|---|---|---|
![]() |
![]() |
![]() |
![]() |
![]() |
(edited to add the Background section)
Test plan
See brave/brave-core#24594
Platforms
Linux, macOS, Windows
Description
We previously added the Hangouts extension to allow screen sharing: #1983. The setting is toggleable via the
Hangouts
setting in brave://settings/extensions.The Hangouts extension uses private Chrome Web APIs: https://source.chromium.org/chromium/chromium/src/+/main:chrome/browser/resources/hangout_services/manifest_v3.json;l=24-30. We need to investigate if we still need this extension/component. Screen sharing does not seem dependent on this extension any more: disabling the
Hangouts
setting does not affect screen sharing on Google Meet but does prevent debugging information showing up (which is fine).Note that we disable log uploading done by this (and other) private WebRTC APIs: #1993
Background
In 2019, Brave enabled the Hangouts Services extension to allow users to use Google Hangouts and Google Meet in the Brave browser. This extension fixed some broken Hangouts/Meet functionality in Brave (specifically, screen sharing would not work on Google Hangouts/Meet without the extension). At the time, Chromium was cautious about giving all websites access to the standards-compliant screen sharing API because of security concerns, which is presumably why Google special-cased this ability for Google’s websites only.
Having Google Meet/Hangouts work in Chrome but not Brave was a serious Web compatibility problem. Before enabling this extension by default, Brave made sure that we added a way for users to disable the Hangouts extension in brave://settings/extensions. We also proactively blocked automatic uploading of debugging information to Google’s servers, the same way we frequently modify Chromium to fix leaks and boost user privacy. However, we see now why this would have raised concerns among some users. In hindsight, a better approach would have been one similar to what we did with the Widevine extension: keep the extension off-by-default, and ask the user if they want to enable it on their first visit to a website with functionality that would be helped by the extension.
Over the years, we received clear reports from users that Google Meet did not work properly without the Hangouts Services extension, which is why we kept it on by default (though we should have revisited this sooner.) With the widespread adoption of screen sharing Web APIs, it’s clear the extension is no longer needed. Google deprecated Hangouts, and Google Meet works fine for Brave users without the extension. We have now changed our settings panel to leave the Hangouts Services extension off by default, and are removing the extension completely with the work in this issue.
The text was updated successfully, but these errors were encountered: