I tried using JSON.stringify(object), but it doesn\'t go down on the whole structure and hierarchy.
On the other hand console.log(object) d
You can use the Chrome DevTools Utilities API copy() command for copying the string representation of the specified object to the clipboard.
If you have lots of objects then you can actually JSON.stringify() all your objects and keep on appending them to a string. Now use copy() method to copy the complete string to clipboard.