Skip to content
This repository was archived by the owner on Aug 2, 2025. It is now read-only.

Commit 89c4369

Browse files
araemowill-stone
andauthored
feat: add support for New and Classic Microsoft Teams (#681)
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]>
1 parent c2e520f commit 89c4369

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/config/apps.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,14 @@ const apps = typeApps({
104104
convertUrl: (url) =>
105105
url.replace('https://teams.microsoft.com/', 'msteams:/'),
106106
},
107+
'Microsoft Teams (work or school)': {
108+
convertUrl: (url) =>
109+
url.replace('https://teams.microsoft.com/', 'msteams:/'),
110+
},
111+
'Microsoft Teams classic': {
112+
convertUrl: (url) =>
113+
url.replace('https://teams.microsoft.com/', 'msteams:/'),
114+
},
107115
'Min': {},
108116
'Miro': {},
109117
'Mullvad Browser': {

0 commit comments

Comments
 (0)