Google search history deleter helper

Will select all items on page and click remove button until everything is deleted.

  1. // ==UserScript==
  2. // @name Google search history deleter helper
  3. // @namespace nopantsu
  4. // @version 0.2
  5. // @description Will select all items on page and click remove button until everything is deleted.
  6. // @match https://history.google.com/history/*
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. if (document.getElementById("div0")) {
  11. setAllChecks();
  12. document.getElementsByClassName("kd-button")[1].click();
  13. }