Jump to content

Recommended Posts

Posted (edited)

I didnt need an addon to do this.

 

when you login to Gmail you should get a diamond icon in the address bar. Click this and you should see "Allow Gmail to open all email links?" . Click allow and then it should work. You can check it by going to chrome://settings/handlers

 

Mailto.jpg

 

Settings.jpg

 

 

edit: Sorry didn't notice this was in the Windows 10 thread! It works in Windows 7 and Chrome 60

Edited by fiza
Posted

In Windows 7 you can set it under Google Chrome Default settings > Register Protocol Handlers

 

Hopefully same in Windows 10?

Posted

I wasn't looking in the default settings section. Found it now.

 

Would I need it to be set as this?

 

{"url": "https://mail.google.com/mail/?extsrc=mailto&url=%s", "default": true, "protocol": "mailto"}

  • 2 weeks later...
Posted

I have added this as a handler in group policy. How would I expand this to include ICS files for Calendar as well please?

 

[{"url": "https://mail.google.com/mail/?extsrc=mailto&url=%s", "default": true, "protocol": "mailto"}]

Posted
How would I expand this to include ICS files for Calendar as well please?

This should do it...

 

[{"default":true,"protocol":"mailto","url":"https://mail.google.com/mail/?extsrc=mailto&url=%s"},{"default":true,"protocol":"webcal","url":"https://calendar.google.com/calendar/render?cid=%s"}]

 

Prettified version...

 

[
  {
     "default":true,
     "protocol":"mailto",
     "url":"https://mail.google.com/mail/?extsrc=mailto&url=%s"
  },
  {
     "default":true,
     "protocol":"webcal",
     "url":"https://calendar.google.com/calendar/render?cid=%s"
  }
]

  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...