Start page remove add banner

Remove the add banner

  1. // ==UserScript==
  2. // @name Start page remove add banner
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Remove the add banner
  6. // @author You
  7. // @match https://vivaldi.start.me/*
  8. // @match https://start.me/*
  9. // @grant none
  10. // @require http://code.jquery.com/jquery-3.4.1.min.js
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. //see require using above to bring in jquery
  17. var $ = window.jQuery;
  18.  
  19. $("aside.widget-page__ads").hide();
  20. })();