Use Firefox plugins (”xpi”) in K-Meleon web browser
You will need the actual plugin file which has an extension of “xpi”. Using a browser other than Mozilla you should be able to download the .xpi file and save it. Next you will require a utility capable of extracting xpi files, which are compressed files similar to .zip or .rar files. I suggest Universal Extractor available at: http://legroom.net/software/uniextract.
Once the file is extracted, locate a “.js” file or a “.rdf” file that contains the installation directives of the .xpi file. Open this file in a text editor and you can observe the install actions of the plugin which is mainly copying files to the appropriate directory of a Firefox installation. Follow the logic of the code and place the files mentioned into the proper locations of your K-Meleon installation. For instance, if install.js is located in the extracted files and has code to put npRACtrl.dll into the “Plugins” folder, the following would be seen in the file:
// get plugin folder location
folder = getFolder(”Plugins”);
// install plugin file
err = addFile(pluginTag, pluginVersion, “npRACtrl.dll”, folder, null);
if (err != 0)
cancelInstall(err);
You would need to locate that file npRACtrl.dll in the ones you extracted from the .xpi file and copy to you “plugins” directory within the K-meleon program folder. Similarly, other files may need to be copied to the components directory, etc.
In particular, the above procedure allows LogMeIn Firefox plugin to be used with K-meleon web browser.
