Skip to content

Instantly share code, notes, and snippets.

@FabianPastor
Created October 16, 2015 11:11
Show Gist options
  • Save FabianPastor/92900ec178c6482e2ccb to your computer and use it in GitHub Desktop.
Save FabianPastor/92900ec178c6482e2ccb to your computer and use it in GitHub Desktop.
UserScript para Greasymonkey para modificar el CSS de Meneame
// ==UserScript==
// @name Meneame CSS Edit
// @namespace FabianPastor
// @include https://www.meneame.net/*
// @version 1
// @grant none
// ==/UserScript==
$(".ads-interlinks").remove();
$("#sidebar").remove();
$(".news-shakeit").remove();
$("#wrap").css("max-width","8000px").css("width","100%");
$("#newswrap").css("margin","10px 4px 0px 4px");
$(".news-body h1, .news-body h2").css("font-size","180%").css("font-weight","bold");
$(".news-body").css("padding-left","5px");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment