Remove Amazon Recommendations

Eliminates all of the "useless crap" (as defined by me) on the Amazon homepage

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name            Remove Amazon Recommendations
// @author          Anonymous
// @namespace       https://greasyfork.org/en/scripts/387802-remove-amazon-recommendations
// @description     Eliminates all of the "useless crap" (as defined by me) on the Amazon homepage
// @version	    0.4
// @include         https://www.amazon.com/*
// @license         Creative Commons Attribution License
// ==/UserScript==
 
var crapFrames = [ "gw-layout", "desktop-grid-1", "desktop-grid-2", "desktop-grid-3", "gw-content-grid", "rhf-context", "desktop-ad-btf", "desktop-grid-1-D1", "desktop-grid-1-D2", "gw-desktop-herotator", "nav-swmslot", "gwm-Deck", "gwm-CardLoadingIndicator" ];
var crapClasses = [ "gwm-RecommendationsText gwm-u-blackjack-typography" ];
for (var i=0;i<crapFrames.length;i++) {
   var crapFrame = document.getElementById(crapFrames[i]);
   if (crapFrame) {
       crapFrame.parentNode.removeChild(crapFrame);
   }
}

for (var i=0;i<crapClasses.length;i++) {
   var crapClass = document.getElementsByClassName(crapClasses[i]);
   if (crapClass) {
       crapClass.parentNode.removeChild(crapClass);
   }
}