Skip to content

Instantly share code, notes, and snippets.

@youcune
Last active June 10, 2021 08:28
Show Gist options
  • Save youcune/a5a98b4979aa221f65205f1730b469b9 to your computer and use it in GitHub Desktop.
Save youcune/a5a98b4979aa221f65205f1730b469b9 to your computer and use it in GitHub Desktop.
onpasteを削除するJavaScriptブックマークレット
javascript:'use%20strict';const%20_inputs=document.getElementsByTagName(%22input%22);for(const%20a%20of%20_inputs)a.onpaste=null;
const _inputs = document.getElementsByTagName("input");
for (const _input of _inputs) {
_input.onpaste = null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment