Skip to content

Instantly share code, notes, and snippets.

@TypeA2
Last active March 13, 2025 02:48
Show Gist options
  • Select an option

  • Save TypeA2/72bdde255f33dc05d2264d1a51a9abee to your computer and use it in GitHub Desktop.

Select an option

Save TypeA2/72bdde255f33dc05d2264d1a51a9abee to your computer and use it in GitHub Desktop.
// ==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