Created
July 11, 2014 21:58
-
-
Save foeken/d4b4e207fda19abb9614 to your computer and use it in GitHub Desktop.
Get ING back to sanity
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
// Hack the 1password extention on OSX: | |
// Locate: /Users/[USERNAME]/Library/Application Support/Google/Chrome/Default/Extensions/aomjjhallfgjeglblehebfpbcfeobpgk | |
// Add this to global.min.js, look for var Ka = [{template},{template},{template}] | |
{ | |
template_for: [/:\/\/mijn\.ing\.nl\//], | |
hints: [ | |
["input[type=text]", "username"], | |
["input[type=password]", "password"] | |
], | |
fillLogin: { | |
script: [ | |
["fill_by_query", "input[type=text]", "${resolve designator username}"], | |
["fill_by_query", "input[type=password]", "${resolve designator password}"] | |
] | |
} | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment