Guest User

tampermonkey - naprawa czcionki na fb i messengerze

a guest
Mar 7th, 2021
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Naprawa czcionki na FB i Messengerze
  3. // @version      0.2
  4. // @match        https://www.messenger.com/*
  5. // @match        https://www.facebook.com/*
  6. // @grant        GM_addStyle
  7. // @run-at       document-start
  8. // ==/UserScript==
  9.  
  10. (function() {
  11.     'use strict';
  12.  
  13.     function changeFont() {
  14.         GM_addStyle(`
  15.             html, #facebook {
  16.                 --font-family-segoe: Segoe UI, Helvetica, Arial, sans-serif;
  17.             }
  18.         `);
  19.         let body = document.querySelector('._-kb');
  20.         if (!body) {
  21.             setTimeout(changeFont, 5000);
  22.             return;
  23.         }
  24.         body.setAttribute('style', 'font-family: Segoe UI, Helvetica, Arial, sans-serif!important');
  25.     }
  26.     changeFont();
  27. })();
Advertisement
Add Comment
Please, Sign In to add comment