Skip to content

Instantly share code, notes, and snippets.

@amatkivskiy
Last active November 2, 2023 08:06
Show Gist options
  • Save amatkivskiy/4d5efdb9802ea4a0c4fca2b4e8e04b29 to your computer and use it in GitHub Desktop.
Save amatkivskiy/4d5efdb9802ea4a0c4fca2b4e8e04b29 to your computer and use it in GitHub Desktop.
Userscript for Tampermonkey that enbles copy paste on VNTU test
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://test.vntu.edu.ua/web_thesaurus/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=hibbard.eu
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.addEventListener("load", (event) => {
document.body.removeAttribute('onCopy');
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment