Blogger.com Tahoma Font

Tahoma font for blogger. If you are sick of Blogger font, this script is for you.

  1. // ==UserScript==
  2. // @name Blogger.com Tahoma Font
  3. // @description Tahoma font for blogger. If you are sick of Blogger font, this script is for you.
  4. // @author Salar2K
  5. // @namespace Blogger
  6. // @version 1.1
  7. // @license Creative Commons Attribution-Noncommercial-Share Alike 3.0
  8. // @include http://blogger.com/*
  9. // @include http://www.blogger.com/*
  10. // @include https://blogger.com/*
  11. // @include https://www.blogger.com/*
  12. // @grant GM_addStyle
  13. // ==/UserScript==
  14.  
  15. var fontTahoma = "html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p {font-family: tahoma !important;} ";
  16. fontTahoma+=" *{font-family: tahoma !important;}";
  17. GM_addStyle(fontTahoma);