Last active
March 13, 2025 02:48
-
-
Save TypeA2/72bdde255f33dc05d2264d1a51a9abee 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 Anti-tab | |
| // @namespace Violentmonkey Scripts | |
| // @match *://*.donmai.us/uploads/* | |
| // @grant none | |
| // @version 1.0 | |
| // @author TypeA2 | |
| // @description 3/13/2025, 11:46:28 AM | |
| // @downloadURL https://gist.github.com/TypeA2/72bdde255f33dc05d2264d1a51a9abee/raw/anti-tab.user.js | |
| // @updateURL https://gist.github.com/TypeA2/72bdde255f33dc05d2264d1a51a9abee/raw/anti-tab.user.js | |
| // ==/UserScript== | |
| $("#post_tag_string").on("keydown", e => { if (e.key === "Tab") e.preventDefault(); }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment