Advertisement
Guest User

Untitled

a guest
May 8th, 2021
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Dobre programy
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  try to take over the world!
  6. // @match        https://www.dobreprogramy.pl/*
  7. // @icon         https://www.google.com/s2/favicons?domain=dobreprogramy.pl
  8. // @require      http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js
  9. // ==/UserScript==
  10.  
  11. let $ = window.jQuery;
  12.  
  13. $(document).ready(function () {
  14.     'use strict';
  15.     setInterval(function() {
  16.         $('h1, h2, h3, p, a, span').each(function(){
  17.             $(this).css({"font-family": "\'Segoe UI\', Arial"});
  18.         });
  19.     }, 1000);
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement