Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Naprawa czcionki na FB i Messengerze
- // @version 0.2
- // @match https://www.messenger.com/*
- // @match https://www.facebook.com/*
- // @grant GM_addStyle
- // @run-at document-start
- // ==/UserScript==
- (function() {
- 'use strict';
- function changeFont() {
- GM_addStyle(`
- html, #facebook {
- --font-family-segoe: Segoe UI, Helvetica, Arial, sans-serif;
- }
- `);
- let body = document.querySelector('._-kb');
- if (!body) {
- setTimeout(changeFont, 5000);
- return;
- }
- body.setAttribute('style', 'font-family: Segoe UI, Helvetica, Arial, sans-serif!important');
- }
- changeFont();
- })();
Advertisement
Add Comment
Please, Sign In to add comment