Skip to content

Commit

Permalink
feat: add support for New and Classic Microsoft Teams (#681)
Browse files Browse the repository at this point in the history
Microsoft renamed legacy teams and introduced a new version of teams with a new name.
This will support all 3 app names, but you won't be able to choose between them with
Browserosaurus, since they all use the same msteams:/ URL prefix.

Co-authored-by: Will Stone <[email protected]>
  • Loading branch information
araemo and will-stone committed Feb 26, 2024
1 parent c2e520f commit 89c4369
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/config/apps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,14 @@ const apps = typeApps({
convertUrl: (url) =>
url.replace('https://teams.microsoft.com/', 'msteams:/'),
},
'Microsoft Teams (work or school)': {
convertUrl: (url) =>
url.replace('https://teams.microsoft.com/', 'msteams:/'),
},
'Microsoft Teams classic': {
convertUrl: (url) =>
url.replace('https://teams.microsoft.com/', 'msteams:/'),
},
'Min': {},
'Miro': {},
'Mullvad Browser': {
Expand Down

0 comments on commit 89c4369

Please sign in to comment.