WD Cloud Unhide Button

Unhides the "shutdown" button for the WD Cloud.

  1. // ==UserScript==
  2. // @name WD Cloud Unhide Button
  3. // @description Unhides the "shutdown" button for the WD Cloud.
  4. // @namespace Pogmog
  5. // @include http://192.168.1.07/*
  6. // @version 1
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10.  
  11. window.setInterval(function(){
  12. $('#id_shutdown_td').css({
  13. 'display': 'initial'
  14. });
  15. }, 5000);