Skip to content

Instantly share code, notes, and snippets.

@Isaac12x
Created March 23, 2019 10:22
Show Gist options
  • Select an option

  • Save Isaac12x/0eb7e2e296ef225d78e90a8f56386f4d to your computer and use it in GitHub Desktop.

Select an option

Save Isaac12x/0eb7e2e296ef225d78e90a8f56386f4d to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Re-enable copy/paste of emails
// @include https://www.ns.nl/producten/s/railrunner*
// @grant none
// ==/UserScript==
$(function() {
$(document).off("copy paste",
"[data-regex=email], [data-regex=emailRepeat]",
$._data(document, "events").paste[0].handler);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment