Created
August 3, 2016 18:16
-
-
Save amurrell/26434c1510f7ef678bce86315a634874 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Pixlr Editor - Remove AD | |
// @namespace http://your.homepage/ | |
// @version 0.1 | |
// @description Remove div wrapper for the AD, remove body padding right | |
// @author You | |
// @match https://pixlr.com/editor/ | |
// @grant none | |
// ==/UserScript== | |
$('.ad-wrap').remove(); | |
$('body').css('padding-right', '0'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment