Skip to content

Instantly share code, notes, and snippets.

@fsjuhl
Created April 28, 2019 20:02
Show Gist options
  • Save fsjuhl/ea8f56663b3bf1d99afba84a2f32c1c8 to your computer and use it in GitHub Desktop.
Save fsjuhl/ea8f56663b3bf1d99afba84a2f32c1c8 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Stay logged into PayPal.
// @version 0.1
// @description Extends your PayPal session automatically.
// @author Freddy (@copbud)
// @match *://*.paypal.com/*
// ==/UserScript==
(function() {
'use strict'
setInterval(() => document.querySelector(".extendSession").click(), 14 * 60 * 1000)
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment