Skip to content

Instantly share code, notes, and snippets.

@fedemp
Last active August 29, 2015 14:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fedemp/e72649527df95881c881 to your computer and use it in GitHub Desktop.
Save fedemp/e72649527df95881c881 to your computer and use it in GitHub Desktop.
Eliminar paywal de lanacion.com.ar en Firefox
/*
En Windows deben abrir la carpeta %AppData%\Mozilla\Firefox\Profiles\
(ej: C:\Users\IEUser\AppData\Roaming\Mozilla\Firefox\Profiles
En Linux busquen ~/.mozilla/firefox/
Tienen que haber una carpeta con un nombre con caracteres al azar.
Dentro de esta carpeta tiene que haber otra llamada chrome
Si la carpeta chrome no existiese pueden crearla ahora.
Dentro de la carpeta chrome crear un nuevo archivo llamado userContent.css.
En ese archivo copian el siguiente texto y luego reinician Firefox.
*/
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("www.lanacion.com.ar") {
.modal-scrollable {
display: none !important;
}
body.modal-open {
overflow: auto !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment