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.htmlREM - 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-----------------------------------