NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name AApex-2 Auto Hide & Highlight Content // @run-at document-start // @namespace https://www.amazon.com // @description Easy DG Classification Amazon // @author shjaisw // @include http://www.amazon.*/gp/* // @include http://www.amazon.*/dp/* // @include http://www.amazon.*/*/dp/* // @include https://www.amazon.*/gp/* // @include https://www.amazon.*/dp/* // @include https://www.amazon.*/*/dp/* // @version 2.2 // @grant none // @copyright sjaisw // @license MIT // @updateURL https://openuserjs.org/meta/sjaisw/AApex-2_Auto_Hide_Highlight_Content.meta.js // @downloadURL https://openuserjs.org/install/sjaisw/AApex-2_Auto_Hide_Highlight_Content.min.user.js // @icon https://img.icons8.com/color/48/000000/amazon.png // ==/UserScript== function shjaisw(css) { var head, style; head = document.getElementsByTagName('head')[0]; if (!head) { return; } style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = css; head.appendChild(style); } shjaisw ( '.a-fixed-right-grid-col { position: relative; overflow: visible; zoom: 1; }' + '.a-box .a-box-inner { display: none; }' + '.a-carousel-col { display: none; }' + '#navFooter.navLeftFooter { display: none; }' + '#rhf .rhf-footer { display: none; }' + '.a-spacing-top-base { background: lavender; }' + '#rhf .rhf-header { display: none; }' + '#tell-a-friend { display: none; }' + '#ad { display: none; }' + '#staticImage { display: none; }' + 'div#HLCXComparisonWidget_feature_div.feature { display: none; }' + 'div#productDescription { background: wheat; }' + 'div#sims-fbt-container.a-container { display: none; }' + '.askInlineWidget { display: none; }' + 'div#universal-detail-ilm { display: none; }' + '#staticImage { display: none; }' + 'div.productDescriptionWrapper { background: wheat; }' + 'div#navFooter { display: none; }' + 'div#hero-quick-promo { display: none; }' + 'div#div-gpt-ad { display: none; }' + 'div.productDescriptionWrapper { background: wheat; }' + 'div#rhf-container { display: none; }' + 'div#giveaway_feature_div.feature { display: none; }' + 'div.productDescriptionWrapper { background: wheat; }' + '#dp .a-container { background: #F9F6F5; }' + '#quickPromoBucketContent { display: none; }' + '.uilm-section img { display: none; }' + '#div-gpt-ad {display: none; }' + '#productDescription div.productDescriptionWrapper { margin: 0 0 1em 0; background: wheat; }' + '.askDPSearchViewContent { display: none; }' + '#store-disclaimer_feature_div td table td { display: none; }' + '#view_to_purchase-sims-feature { display: none; }' + '.burj #productTitle { background: wheat; }' + '.a-spacing-micro, .a-ws .a-ws-spacing-micro { display: none; }' + '#navbar #nav-search { display: none; }' + '#productTitle { background: wheat; }' + '.a-size-small { display: none; }' + 'div#promotions_feature_div { display: none; }' + '.nav-subnav #nav-subnav { display: none; }' + '.nav-packard-glow #nav-xshop-container { display: none; }' + '#navbar * { display: none; }' + '.a-spacing-small, .a-ws .a-ws-spacing-small { margin-bottom: 10px!important; display: none; }' + '.burj #fbSection #aboutTheProductText { background: wheat; }' + 'ul.a-unordered-list a-horizontal a-size-small { display: none; }' + '#nav-tools { display: none; }' + '#rhf .rhf-sign-in-button { display: none; }' + '#detail-bullets, #detail_bullets_id, #technical-data { background: lavender; }' + '#nav-shop { display: none; }' + '.a-spacing-top-small { background: wheat; }' + '.a-carousel-header-row .a-column, .a-carousel-header-row h1, .a-carousel-header-row h2, .a-carousel-header-row h3, .a-carousel-header-row h4, .a-carousel-header-row h5, .a-carousel-header-row h6 { display: none; }' + '#productDescription { color: #333333; background: wheat; }' );