Posted: . At: 12:08 PM. This was 4 years ago. Post ID: 14490
Page permalink. WordPress uses cookies, or tiny pieces of information stored on your computer, to verify who you are. There are cookies for logged in users and for commenters.
These cookies expire two weeks after they are set.



Sponsored



A very useful Tampermonkey script that will fix the font on Wikipedia


This very useful script will give Wikipedia a better font and make it use the Monobook skin. I like this theme better than the standard one. You can fit more information on the screen.

wikipedia.js
1
2
3
4
5
6
7
8
9
10
11
// ==UserScript==
// @name         Wikipedia Monobook
// @run-at       document-start
// @include      *wikipedia.org/wiki/*
// @include      *wiktionary.org/wiki/*
// @include      *metapedia.org/wiki/*
// ==/UserScript==
if(window.location.href.indexOf("?useskin=monobook") == -1)
{
    window.location = window.location.href.concat("?useskin=monobook");
}

Use Greasemonkey or Tampermonkey for Firefox to enable this script to work and enjoy a better looking Wikipedia experience. Tampermonkey is a very good way to customize any website that has annoying elements that you wish to hide. This is a great improvement.

This Ublock Origin filter will remove the suggested articles section from Twitter.com on desktop.

! 7/15/2020 https://twitter.com
twitter.com##.r-m611by.r-1l5qxre.css-1dbjc4n
twitter.com##div[aria-label="Timeline: Trending now"],aside[aria-label="Who to follow"]

This is a great way to clean up your Twitter feed on desktop and make it more usable.


Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.