[e621] Quick Favorite + Upvote (Hotkey)

Updated for the new E621 Redesign

// ==UserScript==
// @name         [e621] Quick Favorite + Upvote (Hotkey)
// @namespace    http://twitter.com/merasmusfanboy
// @version      1.1
// @description  Updated for the new E621 Redesign
// @author       chronos
// @match        *://e621.net/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.onkeyup = function(e) {
  if (e.shiftKey && e.which == 70) {
          $('#add-fav-button').click();
          $('.post-vote-up-link').click();
  } else {return 0}
};

    // what a stupid redesign the people from e6 did honestly.
})(); //i love computers