Skip to content

Instantly share code, notes, and snippets.

@amurrell
Created August 3, 2016 18:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amurrell/26434c1510f7ef678bce86315a634874 to your computer and use it in GitHub Desktop.
Save amurrell/26434c1510f7ef678bce86315a634874 to your computer and use it in GitHub Desktop.
// ==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