Skip to content

Commit

Permalink
feat: add support for outlook.office365.com url
Browse files Browse the repository at this point in the history
fixes #147
  • Loading branch information
sbrudz committed Mar 31, 2022
1 parent c3a8486 commit ba63a66
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions background/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ chrome.runtime.onInstalled.addListener(async function ({ reason }) {
new chrome.declarativeContent.PageStateMatcher({
pageUrl: { urlContains: 'outlook.live.com' },
}),
new chrome.declarativeContent.PageStateMatcher({
pageUrl: { urlContains: 'outlook.office365.com' },
}),
],
actions: [new chrome.declarativeContent.ShowPageAction()],
},
Expand Down
3 changes: 2 additions & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"matches": [
"https://mail.google.com/*",
"https://outlook.office.com/*",
"https://outlook.live.com/*"
"https://outlook.live.com/*",
"https://outlook.office365.com/*"
],
"css": ["./just-not-sorry.css"],
"js": ["bundle.js"]
Expand Down

0 comments on commit ba63a66

Please sign in to comment.