Advertisement
gheja

szamlazz.hu session keeper

Oct 12th, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. // ==UserScript==
  2. // @name szamlazz.hu session keeper
  3. // @namespace https://github.com/gheja/
  4. // @version 0.1
  5. // @description szamlazz.hu session keeper
  6. // @author Gabor Heja
  7. // @match https://www.szamlazz.hu/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. function ajaxLoad()
  15. {
  16. $.ajax({ url: '/szamla/javascript/webabstract/pricing.js' });
  17. }
  18.  
  19. window.setInterval(ajaxLoad, 60000);
  20.  
  21. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement