[jQuery] jQuery.noConflict( extreme ) for Fluid App

[jQuery] jQuery.noConflict( extreme ) for Fluid App


What is Fluid App? http://fluidapp.com/
I'm considering proposing to Todd (author of Fluid) the inclusion of
jQuery in Fluid. The idea being that Fluid userscript authors would be
able to use jQuery to write their userscripts; Fluid would
automatically include jQuery in every page it loads. Obviously, this
creates a big possibility for conflicts with sites that use other
libraries or even jQuery.
Would this be a valid use case for extreme noConflict?
var fluid = {};
fluid.query = jQuery.noConflict(true);
Would this remedy the case where a Fluid user navigates to a site that
uses jQuery (and perhaps some jQuery plugins)? In other words, loading
jQuery into the fluid.query namespace wouldn't break the instance of
jQuery that the visited site is using?