Skip to content

Instantly share code, notes, and snippets.

@jalex19100
Last active December 2, 2016 17:48
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 jalex19100/a4991d6ab93f3ddca8fec3aedf6cc503 to your computer and use it in GitHub Desktop.
Save jalex19100/a4991d6ab93f3ddca8fec3aedf6cc503 to your computer and use it in GitHub Desktop.
auto_dealer_simplify.user.js
// ==UserScript==
// @name Auto Dealer Simplification
// @namespace jalex.net
// @include *://*.com/used-inventory/*
// @version 1
// @grant none
// ==/UserScript==
setTimeout(function () {
$("#salemove > div").remove();
$("body > div.ddc-header.sticky-header-nav.shrink-header-nav").remove();
$("body > div.ddc-navbar.ddc-navbar-default.nav-shrink.sticky-header-nav").remove();
$("body > div.ddc-wrapper > div.ddc-content.content-page-title").remove();
$("body > div.ddc-wrapper > div.ddc-container.main > div > div:nth-child(1)").hide();
$("body > div.flash.flash-full.js-notice.flash-warn").hide();
$("body > div.ddc-wrapper").css('padding', "5px 0px 0px");
$("div.calloutDetails").remove();
$("li.ddc-integrations.ddc-integrations-badgeprice.ddc-integrations-pricebot.salemove-container").remove();
$("div.customVlpButtonBlock").remove();
$("div.pricing-area.has-buttons > ul > li:last-child").remove();
}, 3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment