I have a chrome extension that needs jquery loaded as a content script for each site the user is browsing.
Problem is that some sites already use jquery (a very big majority of them).
I don't want my jquery (from the extension) enter in conflict with the existing jquery (used by the site).
What is the best way to avoid this ?
I was thinking to modify the jquery I use and wrap the code in a object. Is there another option ?