remove google search verbatim sidebar from search results
// ==UserScript==
// @name remove google search verbatim sidebar
// @namespace *.google.*
// @description remove google search verbatim sidebar from search results
// @include *.google.*
// @version 1
// @grant none
// ==/UserScript==
var removeSideBar = function(){
var x = document.querySelectorAll('#leftnav')[0];
x.removeChild(x.childNodes[0]);
x.style.width = 0;
x = document.querySelectorAll('#gb')[0];
while (x.firstChild) {
x.removeChild(x.firstChild);
}
x.style.width = 0;
x.style.display = 'none';
x = document.querySelectorAll('td.sfbgg:nth-child(1)')[0];
while (x.firstChild) {
x.removeChild(x.firstChild);
}
x.style.width = 0;
// x.style.display = 'none';
};
removeSideBar();