Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name URL Copy on tap
- // @namespace com.atnbueno.url-copy-when-hover
- // @include *
- // @require http://code.jquery.com/jquery-3.6.0.min.js
- // @version 0.1
- // @grant GM_setClipboard
- // ==/UserScript==
- $(document).ready(function() {
- $("body").on("click","a",function() {
- GM_setClipboard($(this).attr("href"));
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement