Bank Interest Collector

Automatically collect daily interest when visiting bank. For updated site layout

// ==UserScript==
// @name         Bank Interest Collector
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Automatically collect daily interest when visiting bank. For updated site layout
// @author       romboyz
// @match        http://www.neopets.com/bank.phtml
// @grant        none
// ==/UserScript==

var collect = document.querySelectorAll("input[value='Collect Interest']");

if (collect.length > 0) {
    collect[0].click();
}