Skip to content

Instantly share code, notes, and snippets.

@Zren
Created October 18, 2014 18:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Zren/0407376c6a4ab2c36153 to your computer and use it in GitHub Desktop.
Save Zren/0407376c6a4ab2c36153 to your computer and use it in GitHub Desktop.
var devtools = atom.getCurrentWindow().getDevToolsWebContents();
var f = function() {
WebInspector.inspectorView._tabbedPane.selectTab('timeline');
};
var fString = f.toString();
fString = fString.substring(fString.indexOf('{') + 1, fString.lastIndexOf('}'));
devtools.executeJavaScript(fString);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment