Comment to 'How can I copy a profile or post link into my clipboard'
  • You may enter the code like following to your Studio->Designer->Injections->Header area:

    function share_link()

    {

    var dummy = document.createElement('input'),

              text = window.location.href;

            document.body.appendChild(dummy);

            dummy.value = text;

            dummy.select();

            document.execCommand('copy');

            document.body.removeChild(dummy);

    }

    Then in the new menu item in the Navigation app, you need to add this function share_link() to the on click field of a new item.