Copy window.location.href to clipboard from extension
问题 I am trying to copy 'window.location.href' e.g. the URL of the current page to clipboard from my extension. My issue is that when I copy the URL to clipboard, it is the extensions URL that is copied and not the page I am visiting. Extensionbar: <!DOCTYPE HTML> <html> <head> <button onclick="copyFunction();">Copy</button> <script type="text/javascript"> function copyFunction() { var inputDump = document.createElement('input'), hrefText = window.location.href; document.body.appendChild