Skip to content

Instantly share code, notes, and snippets.

@JKamsker
Created May 21, 2019 07:53
Show Gist options
  • Save JKamsker/5d3f5cdc050e77a234336473b31ea5f4 to your computer and use it in GitHub Desktop.
Save JKamsker/5d3f5cdc050e77a234336473b31ea5f4 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name EasyBank larger paging
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author J-Kit
// @match https://ebanking.easybank.at/InternetBanking/InternetBanking/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
var switcher = $('#account-entry-switcher');
if(switcher && switcher.children().length == 3){
switcher.addOption("500",500);
switcher.addOption("1000",1000);
switcher.addOption("10000",10000);
switcher.val('0');
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment