Greasy Fork 支持简体中文。

cleanGoogle

removes shit from google

目前為 2020-02-13 提交的版本,檢視 最新版本

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.cn-greasyfork.org/scripts/390454/772282/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. // $('resultStats').remove;
  21. }