Created
May 21, 2019 07:53
-
-
Save JKamsker/5d3f5cdc050e77a234336473b31ea5f4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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