Hi all,

  Due to a change in Mozilla as of XULRunner 1.9.3a5pre, Conkeror's
feature of automatically loading glue code for extensions is no longer
possible.  This means that when you have one of the previously supported
extensions installed, you will no longer automatically have Conkeror
commands for using the extension.  The extensions that were previously
supported in this way were adblockplus, dom-inspector, noscript, and
venkman.  If you have any of these extensions installed, you will now have
to load the glue module from your rc, with a line like the following,
substituting in the appropriate module name:

   require("dom-inspector");

  With some of these modules, loading the module when the extension is not
installed could result in an error, so to be safe, you could wrap the call
to 'require' in a try/catch block:

   try { require("dom-inspector"); } catch (e) {}

Thanks!
-- 
John Foerch
_______________________________________________
Conkeror mailing list
[email protected]
https://www.mozdev.org/mailman/listinfo/conkeror

Reply via email to