Last active
July 12, 2018 15:19
-
-
Save oflow/b5d0b379ff46034be12554065efaadde to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Fuck you <INPUT onpaste="return false"> | |
// @description 貼り付け禁止すんな殺すぞ! | |
// @include https://* | |
// ==/UserScript== | |
/* https://developer.mozilla.org/en-US/docs/Web/API/Event/stopImmediatePropagation */ | |
document.addEventListener('paste', event => event.stopImmediatePropagation(), true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment