Skip to content

Commit

Permalink
Merge pull request #14 from WesleyBranton/development
Browse files Browse the repository at this point in the history
Version 2.3
  • Loading branch information
WesleyBranton committed Nov 24, 2019
2 parents 6ae227d + f172886 commit 68bda7b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ To develop and test the extension, you need to open the "about:debugging" page i
Further documentation about developing Firefox extensions can be found [here](https://developer.mozilla.org/docs/Mozilla/Add-ons/WebExtensions/Your_first_WebExtension).

## Release Notes
### Version 2.2.2
### Version 2.3
* **[FIXED]** Firefox now uses the Outlook icon for the settings
* **[CHANGE]** Overhauled options UI

### Version 2.2.1
Expand Down
2 changes: 1 addition & 1 deletion firefox/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,4 @@ const filter = {urls: [
'*://outlook.office.com/mail/deeplink/compose'
]};
chrome.runtime.onMessage.addListener(saveMessage);
browser.webRequest.onBeforeRequest.addListener(openTab, {urls: ['*://outlook.send/*']}, ['blocking']);
browser.webRequest.onBeforeRequest.addListener(openTab, {urls: ['*://outlook.com/send*']}, ['blocking']);
6 changes: 3 additions & 3 deletions firefox/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Outlook.com mailto",
"version": "2.2.2",
"version": "2.3",
"description": "Add Outlook.com as a default email provider for all mailto links.",
"author": "Wesley Branton",

Expand Down Expand Up @@ -32,7 +32,7 @@
"protocol_handlers": [{
"protocol": "mailto",
"name": "Outlook.com",
"uriTemplate": "https://outlook.send/?to=%s"
"uriTemplate": "https://outlook.com/send/?to=%s"
}],

"background": {
Expand All @@ -44,6 +44,6 @@
"tabs",
"webRequest",
"webRequestBlocking",
"*://outlook.send/*"
"*://outlook.com/send/*"
]
}

0 comments on commit 68bda7b

Please sign in to comment.