Sixem

VKontakte Image Saver (GM)

Jun 7th, 2016
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // Addon: https://addons.mozilla.org/en-US/firefox/addon/vkontakteru-downloader/
  3. // @name        VK Download
  4. // @namespace   VKDL
  5. // @description Download VK Album Images With Enter Key
  6. // @include     https://vk.com/*
  7. // @version     1
  8. // @grant       none
  9. // Usage: Download the addon above, click on a image within a album and press enter to save it.
  10. // ==/UserScript==
  11.  
  12. function KeyCheck(e) {
  13.     if(e.keyCode == 13) {
  14.         document.getElementsByClassName("vk-downloader-link")[0].click();
  15.         var ev = document.createEvent('KeyboardEvent');
  16.         ev.initKeyEvent('keydown', true, true, window, false, false, false, false, 39, 0);
  17.         document.body.dispatchEvent(ev);
  18.     }
  19. }
  20. window.addEventListener('keydown', KeyCheck, true);
Advertisement
Add Comment
Please, Sign In to add comment