Skip to content

Commit 60caaab

Browse files
committed
fixes for mac os
1 parent 177bbcf commit 60caaab

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Mailtowa.crx

-95.7 KB
Binary file not shown.

mailtowa.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ const handleLink = (e) => {
1313
const urlString = data.owaIntercept.length === 2 ? "office" : "live";
1414
const outlookString = `https://outlook.${urlString}.com/owa/?path=/mail/action/compose&${paramString}`;
1515
window.open(outlookString, '_blank');
16-
17-
e.preventDefault();
18-
return false;
1916
}
2017
});
18+
e.preventDefault();
19+
e.stopImmediatePropagation();
20+
e.stopPropagation();
21+
return false;
2122
}
2223
}
2324

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "MailtOWA: Mailto O365 Webmail / OutlookWebApp",
3-
"version": "1.0",
3+
"version": "1.1",
44
"description": "Mailto links open Microsoft Office 365 Webmail / Outlook Web Application Compose by default",
55
"permissions": ["storage"],
66
"options_page": "popup.html",

0 commit comments

Comments
 (0)