Skip to content

Instantly share code, notes, and snippets.

@xim
Created September 4, 2014 08:45
Show Gist options
  • Save xim/9058d6b3f54062ab0a17 to your computer and use it in GitHub Desktop.
Save xim/9058d6b3f54062ab0a17 to your computer and use it in GitHub Desktop.
Manga stream remove ad banners
// ==UserScript==
// @name Manga Stream remove ad banners
// @namespace https://gist.github.com/xim
// @description Removes and collapses right side ad on MangaStream, readms.com
// @include http://readms.com/*
// @version 1
// @grant none
// ==/UserScript==
var el = document.getElementById('reader-sky');
var parent = el.parentNode;
parent.removeChild(el);
parent.children[0].style.marginRight = "1em";
parent.children[0].style.marginLeft = "1em";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment