Is it possible to access the $0 DOM element pointer from bookmarklet or snippet in console.?
More info about $0
https://developers.google.com/chrome-developer-tools/docs/commandline-api#0_-_4
Dev Tools remembers the last five DOM elements (or JavaScript heap objects) that you've selected in the tab (or Profiles panel). It makes those objects available as $0, $1, $2, $3, and $4. $0 returns the most recently selected element or JavaScript object, $1 returns the second most recently selected one, and so on.