Skip to content

Instantly share code, notes, and snippets.

@joprice
Created January 10, 2014 04:02
Show Gist options
  • Save joprice/8346814 to your computer and use it in GitHub Desktop.
Save joprice/8346814 to your computer and use it in GitHub Desktop.
Log to console when developing chrome devtools extension.
function debug() {
var args = Array.prototype.slice.call(arguments).join(",")
var script = ["console.log(", args, ")"].join('')
chrome.devtools.inspectedWindow.eval(script);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment