How do I view a webapp in an application and call it up with a hotkey?

0

I frequently visit a web app hosted on a nearby server, usually via browser bookmarks. I'd like to have a hotkey to "launch" it in an application with none of the browser toolbars or menus, since the web app can take care of its own navigation.

How can I do this? Chrome can place URL shortcuts on your desktop, but I'd like to know my options.

Robinicks

Posted 2009-10-19T17:48:23.490

Reputation: 2 322

Answers

0

Firefox

Start FF with the -profilemanager command line switch and create a new profile. Set up this profile to now have any chrome at all (Most can be turned off, try Hide Menubar to get rid of the top bar).

Now, grab a copy of AutoHotKey, and try something like this:

#w::Run p:\ath\to\firefox.exe -P "Profile Name (Case Sensitive)" "http://url.to/webapp"

This would launch firefox, without chrome, at your webapp.

Phoshi

Posted 2009-10-19T17:48:23.490

Reputation: 22 001

+5 - This is amazing because I can get a minimal installation of Firefox opening up with the homepage set to my webapp's URL, instead of a bloated thing running with Prism, though Prism sounds like an integrated solution. – Robinicks – 2009-10-19T21:22:01.330

Why the downvote, whoever? Always willing to improve myself :) – Phoshi – 2009-10-19T21:35:04.047

2

If using Firefox, check out the Prism (a Mozilla labs project).

Side Note: if using Windows, you can assign a shortcut hotkey to any desktop icon.

Chris_K

Posted 2009-10-19T17:48:23.490

Reputation: 7 943

oops, I didn't realize there was a time limit. I was still typing this one when you accepted the other one :-) – Chris_K – 2009-10-19T18:06:19.850

No time limit :D its just that I thought no one had anything else to answer. – Robinicks – 2009-10-19T21:14:03.997

1

Google Chrome fans can create application shortcuts to achieve this. This release note talks specifically about Gmail, but it will work with any website.

Application shortcuts: You can create an application shortcut to access Gmail straight from your desktop. Simply go to Gmail while you're using Google Chrome, click the page menu and select 'create application shortcuts.' When you double-click a shortcut icon, it opens in a streamlined window.

It's also worth noting that Prism/WebRunner is not under active development, so Chrome app shortcuts will continue to get all the improvements that Chrome gets, and you con easily find a download link for chrome (currently, not so easy for Prism/WebRunner).

In Chrome > Click the Wrench Icon > Tools > Create Application Shortcuts...

Create the shortcut on the desktop, right click the shortcut, and set up a shortcut.

Lenny Sirivong

Posted 2009-10-19T17:48:23.490

Reputation: 111

-2

You can use the free Visual Studio Express and make your own .NET-application to display you webpage using the built in WebBrowser-control. It's not that hard even if you are not a programmer, you can find instructions here. The WebBrowser control uses the Internet Explorer engine. When making your own application you are in total control of the layout of the window, don't need any menubars etc. Then you can assign a hotkey to start your application.

alt text

You can of course hardcode the URL to your WebApp instead of using the textbox and browse-button in the image above.

salle

Posted 2009-10-19T17:48:23.490

Reputation: 892

This is a average user solutions website...solutions that require the user to write a program probably don't belong here. – davr – 2009-10-19T19:30:46.310