I wouldn't call this an elegant solution in any way whatsoever, but as a hack, it'll do the job.
Your question is "how to give focus to the main document from the Chrome Console"; with that, I'm throwing in a middle-element - a popup window. The idea is, if you can create a popup window that self-closes (from the Console), when it closes the focus goes back to the parent window. In this case, it's the actual document you were on, not the Console in Chrome.
Here's the full code laid-out:
var openScript = document.createElement('script');
openScript.innerHTML = 'openWindow = window.open(""); openWindow.document.write(\'<script>window.close();</script>\');';
document.body.appendChild(openScript);
This code can be collapsed into a one-liner that can be copy+pasted into the console and, after you hit Enter it will popup, close, and give focus back to the original document. Whatever element on the page had focus before you gave focus to the console, or whatever element you changed focus to in the console (via document.getElementById('something').focus(), or similar), will gain focus on the page.
The caveat to this approach is that the website you use this on needs to have popups enabled. Alternatively, and not really recommended, you could just "enable all popups" in Chrome.
As an added extra, if you're going to use this multiple times on the same page (without refreshing), you could wrap the javascript that's added to the page in a function call and just call that function each time. For instance:
...
openScript.innerHTML = 'function refocus() { openWindow = window.open(""); openWindow.document.write(\'<script>window.close();</script>\'); }';
...
Then just call refocus(); whenever you want to give focus back to the parent. Of course, if you leave the current page for any reason you would need to re-run the full block of code again.
For what it's worth, if you see yourself using this a lot, you could also add the extension Tampermonkey and save this block of code into a function there; then, you'd never need to worry about running the whole thing each time - you would just call the function name you saved.
One-liner from above (for easy copy+paste):
var openScript = document.createElement('script'); openScript.innerHTML = 'openWindow = window.open(""); openWindow.document.write(\'<script>window.close();</script>\');'; document.body.appendChild(openScript);
chrome.tabsis restricted to be used by extension code. If you enter "chrome" in the console, you'll get all properties available from console. Will see if I can find a workaround. – SaschaM78 Dec 29 '12 at 12:58chrome.tabs. Would be great to see if there's a workaround. – hakre Dec 29 '12 at 15:01