hao123

hao123导航精简

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         hao123
// @namespace    http://tampermonkey.net/
// @version      0.2
// @icon         https://www.hao123.com/favicon.ico
// @description  hao123导航精简
// @author       Mirror
// @match        https://www.hao123.com/
// @grant        none
// ==/UserScript==

(function() {
  var rigth = document.querySelector(".layout-right");
  var left = document.querySelector(".layout-left");
  var script = document.querySelectorAll("script");
  var hotsearchCon = document.querySelector(".hotsearchCon");
  var notice = document.querySelector(".notice");
  var suggest = document.querySelector(".suggest");
  var hotword = document.querySelector(".hotword");
  var spread = document.querySelector(".spread");
  left.parentNode.removeChild(left);
  rigth.parentNode.removeChild(rigth);
  hotsearchCon.parentNode.removeChild(hotsearchCon);
  hotword.parentNode.removeChild(hotword);
  notice.parentNode.removeChild(notice);
  spread.click();
  script.forEach( item => {
      item.parentNode.removeChild(item);
  });
})();