Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Cleaner
- // @namespace http://leathan.xyz/
- // @version 0.3
- // @description try to take over the world!
- // @author You
- // @match http://www.google.com
- // @match https://www.google.com
- // @match http://*.pastebin.com/*
- // @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- // Check if domain is Pastebin
- try {
- $('.content_right_menu').eq(1).hide();
- $('.banner_728').eq(0).hide();
- $('#abrpm').hide();
- $('#abrpm2').hide();
- $('#steadfast').hide();
- $('#footer').hide();
- $('#notice').hide();
- } catch(err) { }
- // Check if domain is Google
- try {
- document.getElementById("gbqfbb").style.display="none"; // Google brand area
- $('div').filter(function(){ return this.className.match(/.*promo.*/) }) .hide() // dynamic add
- } catch(err) { }
- })();
Add Comment
Please, Sign In to add comment