Advertisement
Guest User

Untitled

a guest
Apr 18th, 2022
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. // ==UserScript==
  2. // @name URL Copy on tap
  3. // @namespace com.atnbueno.url-copy-when-hover
  4. // @include *
  5. // @require http://code.jquery.com/jquery-3.6.0.min.js
  6. // @version 0.1
  7. // @grant GM_setClipboard
  8. // ==/UserScript==
  9.  
  10. $(document).ready(function() {
  11. $("body").on("click","a",function() {
  12. GM_setClipboard($(this).attr("href"));
  13. });
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement