Google Chrome Board
February 11, 2012, 09:12:31 PM *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: Been meaning to throw some schnazz on the forum for some time, and well, it's here!
 
   Home   Help Search Login Register  
Pages: [1]
  Print  
Author Topic: Using LogMeIn with Google Chrome  (Read 12219 times)
strongload
Newbie
*
Posts: 8


View Profile Email
« on: September 16, 2008, 12:53:06 AM »

Does anyone here use LogMeIn? ( http://www.logmein.com )

It's pretty much a remote desktop utility, letting you control a remote computer from the internet.

It seems like it's having trouble with Google Chrome, I can only get it to work in Internet Explorer!
« Last Edit: September 16, 2008, 12:55:31 AM by strongload » Logged
TYPELiFE
Administrator
Newbie
*****
Posts: 247




View Profile WWW Email
« Reply #1 on: September 16, 2008, 12:55:09 AM »

LogMeIn does not currently support Google Chrome officially, since it is so new, but you can still switch over to "Frame Shot" mode, the html/image only mode that LogMeIn provides to do what you need to do.
Logged

BudmanWV
Newbie
*
Posts: 1


View Profile Email
« Reply #2 on: December 17, 2008, 08:20:22 AM »

Well, after working on it several times, I finally have the plugin from Firefox for LogMeIn working with Google Chrome.  I have not been able to test all of the features.  But, I have used the remote control and tested full-screen mode and the Windows shortcut keys work also.  I've also used the Firefox LogMein plugin for the Google Chrome Portable version that I have on my thumbdrive.

To get the plugin working, you'll need access to the Firefox plugin files as well as some files from the Firefox folder (I am using Firefox 3.04 on Vista).  Here is a list of the files, where I found them, and where I placed them to get the plugin to work.  Please note that if you are using 2000 or XP or a 64-bit version of Windows, the file LOCATIONS will probably be different but the FILES you need should be the same.

Mozilla Install Folder (e.g. C:\Program Files\Mozilla Firefox):
JS3250.DLL
MOZCRT19.DLL
NSPR4.DLL
NSS3.DLL
NSS3UTIL.DLL
PLC4.DLL
PLDS4.DLL
SMIME3.DLL
SQLITE3.DLL
SSL3.DLL
XPCOM.DLL
XUL.DLL
-- Place these files in the folder where the CHROME.EXE is stored (e.g. C:\Users\Username\AppData\Local\Google\Chrome\Application)

Plugin Folder (in your Firefox Profile folder, e.g. C:\Users\Username\AppData\Roaming\Mozilla\Firefox\Profiles\xxxxxxx\extensions\LogMeInClient@logmein.com\plugins)
LMIProxyHelper.exe
npRACtrl.dll
ractrlkeyhook.dll
unicows.dll
--Place these files in a folder named "Plugins" under the Chrome\Application\Version folder (e.g. C:\Users\Username\AppData\Local\Chrome\Application\1.0.154.36\Plugins)

Please note that I had to create the Plugins folder and then place the files inside.  You'll know you are in the right place to create the Plugins folder if you see "Installer" and "Locales" and "Resources", etc.

As far as the Chrome PORTABLE VERSION, place the "Firefox" dll files with the Chrome.exe file and the plugin files go under the "plugins" folder.

Hope this helps,
Budman
Logged
castor1350
Newbie
*
Posts: 1


View Profile Email
« Reply #3 on: January 27, 2009, 09:45:29 AM »

Thank you so much BudmanWV.  This worked perfectly!
Logged
Zbunidze
Newbie
*
Posts: 1


View Profile WWW Email
« Reply #4 on: February 27, 2009, 10:36:00 PM »

enzyte        
does extagen work    
extenze        
semenax        
does extagen work        
truth about enzyte
Logged
aedmunde
Guest
« Reply #5 on: March 04, 2009, 11:58:02 PM »

trying to plus it a bit for your guys...

Remember to add C:\program files\Mozilla Firefox to the %path% variable!

a batch file to "almost" automate it...

1. Watch for the line breaks that arent' supposed to be there!
2. This runs under Windows 7 public beta!

-edmund

//--------------------------Cut here-----------------------------------
REM - Coded by Edmund.
Set myPrompt=%prompt%
Set Prompt=%prompt%$_
REM - c/o post492.html
REM - Re: Using LogMeIn with Google Chrome
REM - BudmanWV · 12.17.2008 2:20 pm
REM - Well, after working on it several times, I finally have the plugin from Firefox for LogMeIn working with Google Chrome. I have not been able to test all of the features. But, I have used the remote control and tested full-screen mode and the Windows shortcut keys work also. I've also used the Firefox LogMein plugin for the Google Chrome Portable version that I have on my thumbdrive.
REM - To get the plugin working, you'll need access to the Firefox plugin files as well as some files from the Firefox folder (I am using Firefox 3.04 on Vista). Here is a list of the files, where I found them, and where I placed them to get the plugin to work. Please note that if you are using 2000 or XP or a 64-bit version of Windows, the file LOCATIONS will probably be different but the FILES you need should be the same.
REM - Mozilla Install Folder (e.g. C:\Program Files\Mozilla Firefox):

REM - %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\
REM - Add this to environment path: C:\Program Files\Mozilla Firefox
REM - path=%path%;%ProgramFiles\Mozilla Firefox -- doesn't work by the way. efb.



cd C:\Program Files\Mozilla Firefox\
pause
for %%a in (JS3250.DLL, MOZCRT19.DLL, NSPR4.DLL, NSS3.DLL, NSS3UTIL.DLL, PLC4.DLL, PLDS4.DLL, SMIME3.DLL, SQLITE3.DLL, SSL3.DLL, XPCOM.DLL, XUL.DLL) do copy %%a %userprofile%\AppData\Local\Google\Chrome\Application

REM -- Place these files in the folder where the CHROME.EXE is stored (e.g. C:\Users\Username\AppData\Local\Google\Chrome\Application)
REM - Plugin Folder (in your Firefox Profile folder, e.g. C:\Users\Username\AppData\Roaming\Mozilla\Firefox\Profiles\xxxxxxx\extensions\LogMeInClient@logmein.com\plugins)
cd %Userprofile%\AppData\Roaming\Mozilla\Firefox\Profiles
rem - here it gets tricky, haven't got a hack for changing to the correct directory...
cd *.default
cd extensions\LogMeInClient@logmein.com\plugins

mkdir %userprofile%\AppData\Local\Google\Chrome\Application\1.0.154.36\Plugins
mkdir %userprofile%\AppData\Local\Google\Chrome\Application\1.0.154.48\Plugins
pause
for %%a in (LMIProxyHelper.exe, npRACtrl.dll, ractrlkeyhook.dll, unicows.dll) do copy %%a %userprofile%\AppData\Local\Google\Chrome\Application\1.0.154.36\Plugins
for %%a in (LMIProxyHelper.exe, npRACtrl.dll, ractrlkeyhook.dll, unicows.dll) do copy %%a %userprofile%\AppData\Local\Google\Chrome\Application\1.0.154.48\Plugins
pause
REM --Place these files in a folder named "Plugins" under the Chrome\Application\Version folder (e.g. C:\Users\Username\AppData\Local\Chrome\Application\1.0.154.36\Plugins)
REM - Please note that I had to create the Plugins folder and then place the files inside. You'll know you are in the right place to create the Plugins folder if you see "Installer" and "Locales" and "Resources", etc.
REM - As far as the Chrome PORTABLE VERSION, place the "Firefox" dll files with the Chrome.exe file and the plugin files go under the "plugins" folder.
REM - Hope this helps, Budman
pause
Set Prompt=%myPrompt%
REM - You are done.
//--------------------------Cut here-----------------------------------
Logged
nfinitesky
Newbie
*
Posts: 1


View Profile Email
« Reply #6 on: April 19, 2009, 06:39:11 PM »

It looks like the newest version of Chrome (currently beta 2.0.172.6) uses the following plugins folder, instead of one for each specific version of Chrome:  %userprofile%\AppData\Local\Google\Chrome\Application\plugins.  I've tested putting the files listed above in there and it works great.
Logged
Pages: [1]
  Print  
 
Jump to:  

Powered by SMF 1.1.10 | SMF © 2006-2009, Simple Machines LLC