Last active
November 2, 2023 08:06
-
-
Save amatkivskiy/4d5efdb9802ea4a0c4fca2b4e8e04b29 to your computer and use it in GitHub Desktop.
Userscript for Tampermonkey that enbles copy paste on VNTU test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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