+1  A: 

The chrome.send function is not accessible by your extension's javascript code, pages like the newtab page, history and the extensions page use it to communicate with the C++ controller code for those pages.

You can push updates of your extension to users who have it installed, this is described here. The user's application will be updated once the autoupdate interval is hit or when they restart the browser. You cannot however reload a user's extension programmatically. I think that would be a security risk.

Pierre-Antoine LaFayette
Thanks Pierre. Solved my problem by alerting the user to click my extension, which cause a redraw.
Traveling Tech Guy
A: 

window.location.reload() works for me

I am using chromium 6.x so it might be fixed in newer version

marek
where did you put this?
knoopx