How to refresh Application metadata – URL handlers, Web browsers – after installing the own AppleScript

applescriptdefaultssafari

I'm working on an Apple Script that handles URLs. There's a command one can give which re-creates the list that Safari shows to change the default web browser.

Anyone know what this is?

Best Answer

If you saved your AppleScript as application and declared that it can handle the http and https URL scheme in its Info.plist file, you simply need to update its modification date e.g. by running touch "My Program.app" in Terminal, or moving it to a different folder and back again in Finder.

Launch Services will then pick up the change automatically. You will need to restart Safari to update the browser list.

enter image description here