Advertisement
Guest User

boldit

a guest
Apr 1st, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. // ==UserScript==
  2. // @name BoldIt
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Make Everything Bold
  6. // @author Troy Cook
  7. // @match https://mybrtc.blackrivertech.org/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. function tweak() {
  14. let links;
  15. let tags = ["A","DIV","P","H1","H2","H3","H4","H5","H6","H7","H8","SPAN"];
  16. for( let tag of tags ) {
  17. links = document.getElementsByTagName(tag);
  18. for(let u of links) {
  19. u.style.fontWeight = "bold";
  20. }
  21. }
  22. }
  23. setInterval(tweak,500)
  24. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement