Skip to content

Instantly share code, notes, and snippets.

@PiRXlv
Created June 6, 2023 14:12
Show Gist options
  • Save PiRXlv/5cdc457b6a84cff51277d4b84eb3d59d to your computer and use it in GitHub Desktop.
Save PiRXlv/5cdc457b6a84cff51277d4b84eb3d59d to your computer and use it in GitHub Desktop.
Tampermonkey script to liberate eParaksts password field
// ==UserScript==
// @name eParaksts liberator
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Remove stupid fieldChanged script which doesn't allow pasting password
// @author PiRXlv
// @match https://eidas.eparaksts.lv/trustedx-authserver/eparaksts-idp/signatureConsent.xhtml*
// @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.fieldChanged = () => {};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment