Advertisement
ffcss

url tooltip for tampermonkey

Feb 10th, 2021
157
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 tooltip
  3. // @namespace http://tampermonkey.net/
  4. // @version 1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match *://*/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. for(let a of Array.from(document.getElementsByTagName("a"))){
  15. a.setAttribute("title",a.href)
  16. }
  17. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement