Apply ChatGPT Font Everywhere

Changes the font on all websites to Inter (ChatGPT's font).

  1. // ==UserScript==
  2. // @name Apply ChatGPT Font Everywhere
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Changes the font on all websites to Inter (ChatGPT's font).
  6. // @author Your Name
  7. // @match *://*/*
  8. // @grant none
  9. // @run-at document-start
  10. // @license Mit
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // Add the Inter font
  17. const fontStyle = document.createElement('style');
  18. fontStyle.textContent = `
  19. @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
  20. * {
  21. font-family: 'Inter', sans-serif !important;
  22. }
  23. `;
  24. document.head.appendChild(fontStyle);
  25. })();