Last active
December 2, 2016 17:48
-
-
Save jalex19100/a4991d6ab93f3ddca8fec3aedf6cc503 to your computer and use it in GitHub Desktop.
auto_dealer_simplify.user.js
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 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