Have you added jQuery to your content_scripts in the manifest?
jQuery, manifest.json :
"content_scripts":[
{
"matches":["http://www.google.com/*"],
"js":["jquery-1.9.1.min.js", "contentscripts.js"]
}
]
, google. , , :
Google AJAX, , , , - DOM .
, DOMNodeInserted.
:
function fundH3(){
$('h3.r').append('<b>a</b>')
}
searchResultArea.addEventListener('DOMNodeInserted', findH3);