It has an element of a page ( attr ) that I want to copy to Clipboard (Ctrl + C) automatically every time I enter it. I've been able to fetch it with JQuery. It looks like this on the page:
<div class="image-constrain js-image-wrap image-constrain_zoommed">
<img class="image__pic js-image-pic" src="https://ig.img.com/image/E0SlHdTiS-SLAGDD3o3aOw.png"alt="" id="screenshot-image" image-id="gqgn5p">
</div>
In the script it looks like this:
var divACopiar = $('.image-constrain').find('img').attr('src');
Putting it to display in console it looks like this:
https://ig.img.com/image/E0SlHdTiS-SLAGDD3o3aOw.png
I just did not find any commands that worked for my need, even here in the community responses.