3

Is there an extension for Chrome which will launch the current website in a new browser window with no toolbar and associate it with the website's custom icon, very similar to what happens when you click the "Create application shortcuts" option from the Tools menu?

Reason for asking this is there are a few websites I use which require authentication on a separate site first, which then launch the web application in a new window. When making the authentication site an application, the desired site appears in a regular Chrome browser thus defeating the point.

One way this could be done is through launching chrome.exe with the current URL and the other parameters required to launch such applications. However I'm not sure if this is possible via a Chrome extension?

1 Answer 1

1

There couldn’t be an extension like that because extensions are supposed to be secured as much as possible, and what you want would require unfettered access to your system (especially the file system). Extensions only have limited access to write to local files, and even then, only in the designated places, not wherever they want.

What you want would have to be built into Chrome. You could attempt to request such a feature, however certainly don’t expect the part about the lack of a toolbar to be implemented.

Failing that, you could try simply creating a shortcut, setting the target to the URL of the destination site (not the auth site), and download the site’s icon and set that.

6
  • Thanks for the detailed response - it gave me the idea to write an AutoHotKey script to do the job. Copy the page URL into the clipboard, then launch chrome.exe with the URL using the --app parameter. Works well enough. The script also preserves the original clipboard contents. Can be downloaded here if interested [link]dl.dropbox.com/u/945683/launchchromeapp.ahk
    – user81021
    Commented May 14, 2011 at 8:19
  • Nice work-around. :-)
    – Synetech
    Commented May 14, 2011 at 23:49
  • link is dead, would be nice if you'd make it available again!
    – stian
    Commented Apr 6, 2013 at 19:30
  • @stian, the link I posted to Chrome’s bug-tracker is fine. Are you talking about the link that user81021 posted? If so, then you should address them specifically (@user81021 …), otherwise they won’t get notified of your comment. Of course they don’t have much activity here and have not been around for a month, so you may want to try Googling for it (or an alternative) in the meantime.
    – Synetech
    Commented Apr 6, 2013 at 20:44
  • yes, I meant the link that @user81021 posted. Thanks for the tip regarding notification. I'll try to find some time to learn AHK and set it up myself.
    – stian
    Commented Apr 8, 2013 at 5:50

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .