Hide Status button on whatsapp web

Hides the Status/Stories button in WhatsApp Web

  1. // ==UserScript==
  2. // @name Hide Status button on whatsapp web
  3. // @version 1
  4. // @match https://web.whatsapp.com/*
  5. // @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js
  6. // @license GPL-v3
  7. // @namespace https://github.com/philippludwig
  8. // @description Hides the Status/Stories button in WhatsApp Web
  9. // ==/UserScript==
  10.  
  11.  
  12. setInterval(function () {
  13. var element = $("[aria-label='Status']");
  14. element.remove();
  15. }, 1000);