I'm developing a "page action" google chrome extension. My manifest has:
...
"background": { "scripts": ["background.js"] },
...
In my background.js file I have:
function doSomething() {
     alert("I was clicked!");
}
chrome.pageAction.onClicked.addListener(doSomething);
This works.  Now in my doSomething function I want to read some data on the current page.  It will be a lot easier for me to use jquery to read the data so I can easily target the exact data I want.  How can I incorporate jquery (preferrably served from google's CDN) so that it's accessible to my doSomething function?
 
     
     
     
     
     
    