Greasy Fork is available in English.

WD Cloud Unhide Button

Unhides the "shutdown" button for the WD Cloud.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name        WD Cloud Unhide Button
// @description Unhides the "shutdown" button for the WD Cloud.
// @namespace   Pogmog
// @include     http://192.168.1.07/*
// @version     1
// @grant       none
// ==/UserScript==


window.setInterval(function(){
  $('#id_shutdown_td').css({
    'display': 'initial'
  });
}, 5000);