A short time, looking at the issue of Chrome Extension Development.
I use jQuery and plugins. But not selecting DOM elements with jQuery.
example code here; (background.html)
<html>
<head>
<script>
function alertValue() {
var a = $("#divName").val();
alert(a);
}
chrome.browserAction.onClicked.addListener(alertValue);
</script>
</head>
</html>
As a result, returns undefined.