{ Wed, 23. Jul 2014 }

Auto-Login to Deluge WebUI

I’m lazy. Who isn’t? So lazy in fact that I don’t feel like entering the password to Deluge’s WebUI every time I want to access it.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
// ==UserScript==
// @name           Deluge Login
// @description    Automatically log in to Deluge WebUI
// @include        http*://url.of.seedbox/*
// @version        0.1
// @namespace      it.trashbukk.userscripts
// ==/UserScript==

setTimeout(function(){
    var pass = 'NotMyPassword';
    document.getElementById('_password').value = pass;
    document.getElementById('ext-comp-1149').click();
}, 2000);