I am using Google Chrome and I\'m writing a browser extension. I\'m trying to inject JQuery 2.0.3 into facebook as a context script. Just to see if I could, I\'m trying to g
You are accessing a $()
function defined in the Facebook page, which has nothing to do with jQuery. To access the execution context of you content scripts from the javascript console, you need to select it from the drop down box located at the bottom of the window:
Instead of <page context>
, you have to select chrome-extension://<your extension id>
.