cleanGoogle

removes shit from google

目前为 2020-02-13 提交的版本。查看 最新版本

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.cn-greasyfork.org/scripts/390454/772294/cleanGoogle.js

  1. // ==UserScript==
  2. // @name cleanGoogle
  3. // @namespace http://omglasergunspewpewpew.com/
  4. // @version 0.3
  5. // @description removes shit from google
  6. // @author Spam_Squirrel
  7. // @match https://www.google.com/*
  8. // @require http://code.jquery.com/jquery-latest.min.js
  9. // ==/UserScript==
  10.  
  11. function cleanGoogle(){
  12. $('div#tads').remove();
  13. $('div#tadsb').remove();
  14. $('div.img-brk').remove();
  15. $('div#top_nav').remove();
  16. $('div.ghhider.ghhd').remove();
  17. $('div#taw').remove();
  18. $('div#NzwoZe').remove();
  19. $('div#botstuff').remove();
  20. $('div#mBMHK').remove;
  21. }