Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm injecting my content script from the background page when the user clicks the browse action button, like so:

chrome.browserAction.onClicked.addListener(function (tab) {
    chrome.tabs.executeScript(null, { file: "content.js" });
});

So how can I access jQuery from inside my content.js? I don't see a way to inject that simultaneously.

share|improve this question

2 Answers

up vote 15 down vote accepted

What about:

chrome.tabs.executeScript(null, { file: "jquery.js" }, function() {
    chrome.tabs.executeScript(null, { file: "content.js" });
});
share|improve this answer
That'll throw them into the same "isolated world"? I'll give it a whirl! – Mark Jan 15 '11 at 5:14
Hah! Brilliant. Works! Thank you :D – Mark Jan 15 '11 at 5:19
thanks a lot, you just saved me some time. – Martin Wawrusch May 14 '11 at 13:25

How about adding this to your manifest file

"content_scripts": [
    {
        "js": [
                "jquery.js", 
                "contentscript.js"
            ]
    }
],
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.