I have developed a Chrome browser extension and, on rare occasion, it crashes (eg, a bubble appears in the upper-right stating \"_____ has crashed! Click here to reload it.\
I once had a similar issue and was able to figure out the root of the issue by starting chrome with verbose logging enabled. To start Google Chrome on Mac with verbose logging you'll need to open a terminal and run something similar to the following:
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --enable-logging --v=1&
Then watch the debug log file by tailing the log file.
tail -f ~/Library/Application\ Support/Google/Chrome/chrome_debug.log
On Ubuntu try:
tail -f ~/.config/google-chrome/chrome_debug.log
It's very chatty but it may be just enough to help you fix your issue.