What do I need to change here so that the JavaScript code works with the manifest version 2 and the security policy?
Screenshot:

Code:
function init()
{
chrome.tabs.getSelected(null, function(tab)
{
url = tab.url;
if(url.indexOf('chrome://') == -1 && url.indexOf('about:blank') == -1){
document.main.q.value = url;
}
});
}
onclick="init()", for example), and move the logic to an external script:<script src="popup.js"></script>,document.getElementById('id-of-button').addEventListener('click', init);. For more information about the CSP, see Chrome extensions: Content Security Policy – Rob W Jul 26 '12 at 12:49