Last active
February 2, 2021 20:42
-
-
Save illixion/08c9314f660a195c93286fdb5e944cce to your computer and use it in GitHub Desktop.
Removes Google Sans from the search results page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name UnSansify Google Search | |
// @namespace http://catto.io/ | |
// @version 1.1 | |
// @description Remove Google Sans font from the search results page | |
// @author Manual | |
// @match www.google.com/* | |
// @match google.com/* | |
// @grant GM_addStyle | |
// ==/UserScript== | |
GM_addStyle('#res h3, #botstuff h3 { font-family: arial,sans-serif !important; };') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For reference, here's the code that is working for me: